removed InitBase()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-10-31 13:26:59 +00:00
parent 39c0acb666
commit 06f6df7d46

View File

@@ -102,8 +102,9 @@ public:
// creating the window
// -------------------
// default ctor
wxWindowBase() { InitBase(); }
// default ctor, initializes everything which can be initialized before
// Create()
wxWindowBase();
// pseudo ctor (can't be virtual, called from ctor)
bool CreateBase(wxWindowBase *parent,
@@ -1026,10 +1027,6 @@ protected:
int m_maxVirtualWidth;
int m_maxVirtualHeight;
// common part of all ctors: it is not virtual because it is called from
// ctor
void InitBase();
// override this to change the default (i.e. used when no style is
// specified) border for the window class
virtual wxBorder GetDefaultBorder() const;