]> git.saurik.com Git - wxWidgets.git/commitdiff
added a "wxWindow *" (unused) argument for wxGTK compatibility
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Aug 1998 22:37:20 +0000 (22:37 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Aug 1998 22:37:20 +0000 (22:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@517 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/ole/dropsrc.h

index e711c428cacab0bc17c7ee236399f4534a0f0df2..e16968b28520406b360ee4eb3d31cdfc5d6a5412 100644 (file)
@@ -43,8 +43,10 @@ public:
   };
 
   // ctors: if you use default ctor you must call SetData() later!
-  wxDropSource();
-  wxDropSource(wxDataObject& data);
+  // NB: the "wxWindow *win" parameter is unused and is here only for wxGTK
+  //     compatibility
+  wxDropSource(wxWindow *win = NULL);
+  wxDropSource(wxDataObject& data, wxWindow *win = NULL);
 
   void SetData(wxDataObject& data);