X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fc7a2a602b4bd9308be21bc07e40a680f483438e..0912690b65b3c58c0e12870fb971675ca5572ae6:/include/wx/fdrepdlg.h diff --git a/include/wx/fdrepdlg.h b/include/wx/fdrepdlg.h index d5688d5090..f8d30441f0 100644 --- a/include/wx/fdrepdlg.h +++ b/include/wx/fdrepdlg.h @@ -12,7 +12,7 @@ #ifndef _WX_FINDREPLACEDLG_H_ #define _WX_FINDREPLACEDLG_H_ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "fdrepdlg.h" #endif @@ -133,7 +133,6 @@ protected: #include "wx/msw/fdrepdlg.h" #else #define wxGenericFindReplaceDialog wxFindReplaceDialog - #define sm_classwxGenericFindReplaceDialog sm_classwxFindReplaceDialog #include "wx/generic/fdrepdlg.h" #endif @@ -178,7 +177,7 @@ typedef void (wxEvtHandler::*wxFindDialogEventFunction)(wxFindDialogEvent&); #define EVT_FIND(id, fn) \ DECLARE_EVENT_TABLE_ENTRY( \ - wxEVT_COMMAND_FIND, id, -1, \ + wxEVT_COMMAND_FIND, id, wxID_ANY, \ (wxObjectEventFunction)(wxEventFunction)(wxFindDialogEventFunction) \ & fn, \ (wxObject *) NULL \ @@ -186,7 +185,7 @@ typedef void (wxEvtHandler::*wxFindDialogEventFunction)(wxFindDialogEvent&); #define EVT_FIND_NEXT(id, fn) \ DECLARE_EVENT_TABLE_ENTRY( \ - wxEVT_COMMAND_FIND_NEXT, id, -1, \ + wxEVT_COMMAND_FIND_NEXT, id, wxID_ANY, \ (wxObjectEventFunction)(wxEventFunction)(wxFindDialogEventFunction) \ & fn, \ (wxObject *) NULL \ @@ -194,7 +193,7 @@ typedef void (wxEvtHandler::*wxFindDialogEventFunction)(wxFindDialogEvent&); #define EVT_FIND_REPLACE(id, fn) \ DECLARE_EVENT_TABLE_ENTRY( \ - wxEVT_COMMAND_FIND_REPLACE, id, -1, \ + wxEVT_COMMAND_FIND_REPLACE, id, wxID_ANY, \ (wxObjectEventFunction)(wxEventFunction)(wxFindDialogEventFunction) \ & fn, \ (wxObject *) NULL \ @@ -202,7 +201,7 @@ typedef void (wxEvtHandler::*wxFindDialogEventFunction)(wxFindDialogEvent&); #define EVT_FIND_REPLACE_ALL(id, fn) \ DECLARE_EVENT_TABLE_ENTRY( \ - wxEVT_COMMAND_FIND_REPLACE_ALL, id, -1, \ + wxEVT_COMMAND_FIND_REPLACE_ALL, id, wxID_ANY, \ (wxObjectEventFunction)(wxEventFunction)(wxFindDialogEventFunction) \ & fn, \ (wxObject *) NULL \ @@ -210,7 +209,7 @@ typedef void (wxEvtHandler::*wxFindDialogEventFunction)(wxFindDialogEvent&); #define EVT_FIND_CLOSE(id, fn) \ DECLARE_EVENT_TABLE_ENTRY( \ - wxEVT_COMMAND_FIND_CLOSE, id, -1, \ + wxEVT_COMMAND_FIND_CLOSE, id, wxID_ANY, \ (wxObjectEventFunction)(wxEventFunction)(wxFindDialogEventFunction) \ & fn, \ (wxObject *) NULL \