From 29094af062083050334b348d447fcae7d513b62a Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Wed, 23 Jun 2004 11:34:24 +0000 Subject: [PATCH] removed non-const wxWindow::GetFont and GetCursor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27960 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/window.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/include/wx/window.h b/include/wx/window.h index 40ad7b237c..97b35334c0 100644 --- a/include/wx/window.h +++ b/include/wx/window.h @@ -733,14 +733,12 @@ public: if ( SetFont(font) ) m_hasFont = false; } - const wxFont& GetFont() const { return DoGetFont(); } - wxFont& GetFont() { return DoGetFont(); } + wxFont GetFont() const; // set/retrieve the cursor for this window (SetCursor() returns true // if the cursor was really changed) virtual bool SetCursor( const wxCursor &cursor ); const wxCursor& GetCursor() const { return m_cursor; } - wxCursor& GetCursor() { return m_cursor; } #if wxUSE_CARET // associate a caret with the window @@ -1226,10 +1224,6 @@ private: // the stack of windows which have captured the mouse static struct WXDLLEXPORT wxWindowNext *ms_winCaptureNext; - // implementation of both const and non-const versions of GetFont() - wxFont& DoGetFont() const; - - DECLARE_ABSTRACT_CLASS(wxWindowBase) DECLARE_NO_COPY_CLASS(wxWindowBase) DECLARE_EVENT_TABLE() -- 2.47.2