X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3b9f782ef3949f583e8ac53795d36787f044fc3..f6669958924c3c3833e2932b65598b06073d2e65:/include/wx/gtk1/dnd.h diff --git a/include/wx/gtk1/dnd.h b/include/wx/gtk1/dnd.h index 965dcdf4ce..8102626aa2 100644 --- a/include/wx/gtk1/dnd.h +++ b/include/wx/gtk1/dnd.h @@ -57,7 +57,7 @@ public: // implementation - GdkAtom GetMatchingPair(); + GdkAtom GetMatchingPair(bool quiet = false); void RegisterWidget( GtkWidget *widget ); void UnregisterWidget( GtkWidget *widget ); @@ -65,13 +65,13 @@ public: GdkDragContext *m_dragContext; GtkWidget *m_dragWidget; GtkSelectionData *m_dragData; - guint m_dragTime; + unsigned m_dragTime; bool m_firstMotion; // gdk has no "gdk_drag_enter" event void SetDragContext( GdkDragContext *dc ) { m_dragContext = dc; } void SetDragWidget( GtkWidget *w ) { m_dragWidget = w; } void SetDragData( GtkSelectionData *sd ) { m_dragData = sd; } - void SetDragTime( guint time ) { m_dragTime = time; } + void SetDragTime(unsigned time) { m_dragTime = time; } }; //-------------------------------------------------------------------------