RTTI extensions

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2003-08-19 16:48:06 +00:00
parent f0a126fe7a
commit a06bb527dd
6 changed files with 89 additions and 107 deletions

View File

@@ -229,13 +229,6 @@ public:
return wxSize(w, h);
}
// the following are just helper functions to help some compiler with the extended rtti inf
void SetWindowPosition( const wxPoint &pt) { SetPosition( pt ) ; }
wxPoint GetWindowPosition() const { return GetPosition() ; }
void SetWindowSize( const wxSize &sz ) { SetSize( sz ) ; }
wxSize GetWindowSize() const { return GetSize() ; }
wxRect GetRect() const
{
int x, y, w, h;
@@ -646,9 +639,6 @@ public:
const wxFont& GetFont() const { return m_font; }
wxFont& GetFont() { return m_font; }
// for resolving RTTI conflicts
wxFont GetWindowFont() const { return GetFont() ; }
#if wxUSE_CARET
// associate a caret with the window
void SetCaret(wxCaret *caret);