X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..1f0acb435592470b421b80df854fbbb08cd2853f:/include/wx/msw/caret.h diff --git a/include/wx/msw/caret.h b/include/wx/msw/caret.h index e1c270508b..ab51bea025 100644 --- a/include/wx/msw/caret.h +++ b/include/wx/msw/caret.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: msw/caret.h +// Name: wx/msw/caret.h // Purpose: wxCaret class - the MSW implementation of wxCaret // Author: Vadim Zeitlin // Modified by: @@ -12,11 +12,7 @@ #ifndef _WX_CARET_H_ #define _WX_CARET_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "caret.h" -#endif - -class WXDLLEXPORT wxCaret : public wxCaretBase +class WXDLLIMPEXP_CORE wxCaret : public wxCaretBase { public: wxCaret() { Init(); } @@ -45,7 +41,7 @@ protected: { wxCaretBase::Init(); - m_hasCaret = FALSE; + m_hasCaret = false; } // override base class virtuals @@ -60,7 +56,7 @@ protected: private: bool m_hasCaret; - DECLARE_NO_COPY_CLASS(wxCaret) + wxDECLARE_NO_COPY_CLASS(wxCaret); }; #endif // _WX_CARET_H_