X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/22f3361e1cf25c52a2da8fdfc5cb081809e18fb9..43ff861df48f0837dac98005dd397c5f127ca136:/include/wx/msw/fdrepdlg.h diff --git a/include/wx/msw/fdrepdlg.h b/include/wx/msw/fdrepdlg.h index 2e84c9567b..c65e422c88 100644 --- a/include/wx/msw/fdrepdlg.h +++ b/include/wx/msw/fdrepdlg.h @@ -2,22 +2,21 @@ // Name: wx/msw/fdrepdlg.h // Purpose: wxFindReplaceDialog class // Author: Markus Greither -// Modified by: 31.07.01: VZ: integrated into wxWindows +// Modified by: 31.07.01: VZ: integrated into wxWidgets // Created: 23/03/2001 -// RCS-ID: +// RCS-ID: $Id$ // Copyright: (c) Markus Greither // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ - #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 +38,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 +56,7 @@ protected: wxFindReplaceDialogImpl *m_impl; DECLARE_DYNAMIC_CLASS(wxFindReplaceDialog) - DECLARE_NO_COPY_CLASS(wxFindReplaceDialog) + wxDECLARE_NO_COPY_CLASS(wxFindReplaceDialog); }; - +#endif // _WX_MSW_FDREPDLG_H_