From 4b13e6aeb2f0e5715e0b51742776a9da2e0c2f98 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 12 Aug 1998 22:37:20 +0000 Subject: [PATCH] added a "wxWindow *" (unused) argument for wxGTK compatibility git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@517 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/ole/dropsrc.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/wx/msw/ole/dropsrc.h b/include/wx/msw/ole/dropsrc.h index e711c428ca..e16968b285 100644 --- a/include/wx/msw/ole/dropsrc.h +++ b/include/wx/msw/ole/dropsrc.h @@ -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); -- 2.45.2