X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..c82af6eec562a372bcc2e6ff26dbf3d14e227d72:/include/wx/mgl/gdiobj.h diff --git a/include/wx/mgl/gdiobj.h b/include/wx/mgl/gdiobj.h index 6281cee51d..7e44a68909 100644 --- a/include/wx/mgl/gdiobj.h +++ b/include/wx/mgl/gdiobj.h @@ -1,21 +1,17 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: wx/msw/gdiobj.h +// Name: wx/mgl/gdiobj.h // Purpose: wxGDIObject class: base class for other GDI classes // Author: Julian Smart // Modified by: // Created: 01/02/97 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_GDIOBJ_H_ #define _WX_GDIOBJ_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "gdiobj.h" -#endif - #include "wx/object.h" // base class // ---------------------------------------------------------------------------- @@ -36,7 +32,7 @@ class WXDLLEXPORT wxGDIRefData : public wxObjectRefData class WXDLLEXPORT wxGDIObject : public wxObject { public: - wxGDIObject() { m_visible = FALSE; } + wxGDIObject() { m_visible = false; } virtual bool GetVisible() { return m_visible; } virtual void SetVisible( bool visible ) { m_visible = visible; }