X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/msw/fdrepdlg.h?ds=sidebyside diff --git a/include/wx/msw/fdrepdlg.h b/include/wx/msw/fdrepdlg.h index 1a8c1ee357..af4de0d207 100644 --- a/include/wx/msw/fdrepdlg.h +++ b/include/wx/msw/fdrepdlg.h @@ -4,20 +4,18 @@ // Author: Markus Greither // Modified by: 31.07.01: VZ: integrated into wxWidgets // Created: 23/03/2001 -// RCS-ID: // Copyright: (c) Markus Greither // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "mswfdrepdlg.h" -#endif +#ifndef _WX_MSW_FDREPDLG_H_ +#define _WX_MSW_FDREPDLG_H_ // ---------------------------------------------------------------------------- // wxFindReplaceDialog: dialog for searching / replacing text // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxFindReplaceDialog : public wxFindReplaceDialogBase +class WXDLLIMPEXP_CORE wxFindReplaceDialog : public wxFindReplaceDialogBase { public: // ctors and such @@ -39,7 +37,7 @@ public: wxFindReplaceDialogImpl *GetImpl() const { return m_impl; } // override some base class virtuals - virtual bool Show(bool show = TRUE); + virtual bool Show(bool show = true); virtual void SetTitle( const wxString& title); virtual wxString GetTitle() const; @@ -57,7 +55,7 @@ protected: wxFindReplaceDialogImpl *m_impl; DECLARE_DYNAMIC_CLASS(wxFindReplaceDialog) - DECLARE_NO_COPY_CLASS(wxFindReplaceDialog) + wxDECLARE_NO_COPY_CLASS(wxFindReplaceDialog); }; - +#endif // _WX_MSW_FDREPDLG_H_