Do earlier and better checking for matching actions and data format, hopefully fixes #11201

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62662 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2009-11-15 13:39:05 +00:00
parent 36b960067d
commit 1aeae3f7d4
2 changed files with 137 additions and 137 deletions

View File

@@ -41,7 +41,8 @@ public:
// implementation
GdkAtom GtkGetMatchingPair(bool quiet = false);
GdkAtom GTKGetMatchingPair(bool quiet = false);
wxDragResult GTKFigureOutSuggestedAction();
void GtkRegisterWidget( GtkWidget *widget );
void GtkUnregisterWidget( GtkWidget *widget );
@@ -52,10 +53,10 @@ public:
guint m_dragTime;
bool m_firstMotion; // gdk has no "gdk_drag_enter" event
void GtkSetDragContext( GdkDragContext *dc ) { m_dragContext = dc; }
void GtkSetDragWidget( GtkWidget *w ) { m_dragWidget = w; }
void GtkSetDragData( GtkSelectionData *sd ) { m_dragData = sd; }
void GtkSetDragTime( guint time ) { m_dragTime = time; }
void GTKSetDragContext( GdkDragContext *dc ) { m_dragContext = dc; }
void GTKSetDragWidget( GtkWidget *w ) { m_dragWidget = w; }
void GTKSetDragData( GtkSelectionData *sd ) { m_dragData = sd; }
void GTKSetDragTime( guint time ) { m_dragTime = time; }
};
//-------------------------------------------------------------------------