]> git.saurik.com Git - wxWidgets.git/commitdiff
removed calls to wxWindowBase::InitBase(), it is called from the ctor anyhow (and...
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 30 Oct 2003 23:08:39 +0000 (23:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 30 Oct 2003 23:08:39 +0000 (23:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24358 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

13 files changed:
include/wx/spinbutt.h
src/common/wincmn.cpp
src/gtk/window.cpp
src/gtk1/window.cpp
src/mac/carbon/window.cpp
src/mac/window.cpp
src/mgl/window.cpp
src/motif/choice.cpp
src/motif/spinbutt.cpp
src/motif/window.cpp
src/msw/spinbutt.cpp
src/os2/window.cpp
src/x11/window.cpp

index 78b8c96225a71a475194010279606947ecb0815d..a4f3073f77fdb908427bb3738c4a530668a6088b 100644 (file)
@@ -39,7 +39,8 @@
 class WXDLLEXPORT wxSpinButtonBase : public wxControl
 {
 public:
-    wxSpinButtonBase() { InitBase(); }
+    // ctor intiializes the range with the default (0..100) values
+    wxSpinButtonBase() { m_min = 0; m_max = 100; }
 
     // accessors
     virtual int GetValue() const = 0;
@@ -60,13 +61,6 @@ public:
     bool IsVertical() const { return (m_windowStyle & wxSP_VERTICAL) != 0; }
 
 protected:
-    // init the base part of the control
-    void InitBase()
-    {
-        m_min = 0;
-        m_max = 100;
-    }
-
     // the range value
     int   m_min;
     int   m_max;
index a45a930faeef994357bf3532f321da5ba7af7593..c8989dd81f43f5846779b1d9c905466ed19e966c 100644 (file)
@@ -109,7 +109,7 @@ END_EVENT_TABLE()
 // ----------------------------------------------------------------------------
 
 // the default initialization
-void wxWindowBase::InitBase()
+wxWindowBase::wxWindowBase()
 {
     // no window yet, no parent nor children
     m_parent = (wxWindow *)NULL;
index d9e5d422b1dd32ce1d93a1dfdeeb646fbdee2007..4369b0a4d7ed1a5d013c75c11efa050f7c2a47bf 100644 (file)
@@ -2446,9 +2446,6 @@ wxWindow *wxGetActiveWindow()
 
 void wxWindowGTK::Init()
 {
-    // common init
-    InitBase();
-
     // GTK specific
     m_widget = (GtkWidget *) NULL;
     m_wxwindow = (GtkWidget *) NULL;
index d9e5d422b1dd32ce1d93a1dfdeeb646fbdee2007..4369b0a4d7ed1a5d013c75c11efa050f7c2a47bf 100644 (file)
@@ -2446,9 +2446,6 @@ wxWindow *wxGetActiveWindow()
 
 void wxWindowGTK::Init()
 {
-    // common init
-    InitBase();
-
     // GTK specific
     m_widget = (GtkWidget *) NULL;
     m_wxwindow = (GtkWidget *) NULL;
index fbe96110d233a5c7f12fa0d02ff159c15d3fecdc..6a23f1cab358c63007f8e4174d27988ab0507b72 100644 (file)
@@ -100,10 +100,6 @@ END_EVENT_TABLE()
 
 void wxWindowMac::Init()
 {
-    // generic
-    InitBase();
-
-    m_isBeingDeleted = FALSE;
     m_backgroundTransparent = FALSE;
 
     // as all windows are created with WS_VISIBLE style...
@@ -116,8 +112,6 @@ void wxWindowMac::Init()
 
     m_hScrollBar = NULL ;
     m_vScrollBar = NULL ;
-
-    m_label = wxEmptyString;
 }
 
 // Destructor
index fbe96110d233a5c7f12fa0d02ff159c15d3fecdc..6a23f1cab358c63007f8e4174d27988ab0507b72 100644 (file)
@@ -100,10 +100,6 @@ END_EVENT_TABLE()
 
 void wxWindowMac::Init()
 {
-    // generic
-    InitBase();
-
-    m_isBeingDeleted = FALSE;
     m_backgroundTransparent = FALSE;
 
     // as all windows are created with WS_VISIBLE style...
@@ -116,8 +112,6 @@ void wxWindowMac::Init()
 
     m_hScrollBar = NULL ;
     m_vScrollBar = NULL ;
-
-    m_label = wxEmptyString;
 }
 
 // Destructor
index 86c0ae8534608fd1b251614e4296d296fa44bb89..0b3e3eaf3b91660a8cdcb5a1190179801f545659 100644 (file)
@@ -546,14 +546,9 @@ void wxWindowMGL::Init()
             wxLogFatalError(_("Cannot initialize display."));
     }
 
-    // generic:
-    InitBase();
-
     // mgl specific:
     m_wnd = NULL;
     m_isShown = TRUE;
-    m_isBeingDeleted = FALSE;
-    m_isEnabled = TRUE;
     m_frozen = FALSE;
     m_paintMGLDC = NULL;
     m_eraseBackground = -1;
index 233a0670e5497c331ebb42c836d67a169460586a..27673013faa6fbd150a5bf1a454132b7350fac00 100644 (file)
@@ -52,8 +52,6 @@ wxChoice::wxChoice()
 
 void wxChoice::Init()
 {
-    InitBase();
-
     m_noStrings = 0;
     m_buttonWidget = (WXWidget) 0;
     m_menuWidget = (WXWidget) 0;
index ec039edb0cd291be945ed6108429a20138551bee..edd15fa3c96aa814137718897052180ed580e7d2 100644 (file)
@@ -274,8 +274,6 @@ bool wxSpinButton::Create( wxWindow *parent, wxWindowID id,
 
     SetName(name);
 
-    InitBase();
-
     m_windowId = ( id == -1 ) ? NewControlId() : id;
 
     bool isVert = IsVertical();
index 63b1e37a5207c060e84ba199ada944b601a9d4ab..423526f7388d818c2475b688c39ceb4eab638ecb 100644 (file)
@@ -200,9 +200,6 @@ bool wxWindow::MapOrUnmap(WXWidget widget, bool domap)
 
 void wxWindow::Init()
 {
-    // generic initializations first
-    InitBase();
-
     // Motif-specific
     m_needsRefresh = TRUE;
     m_mainWidget = (WXWidget) 0;
@@ -210,7 +207,6 @@ void wxWindow::Init()
     m_winCaptured = FALSE;
 
     m_isShown = TRUE;
-    m_isBeingDeleted = FALSE;
     
     m_hScrollBar =
     m_vScrollBar =
index 72e12fd14b657b66c1509c9a48eec8eabfaf3509..ee90758b652f824aae50b2c4d843f48f0d12bbfc 100644 (file)
@@ -127,8 +127,6 @@ bool wxSpinButton::Create(wxWindow *parent,
                           const wxString& name)
 {
     // basic initialization
-    InitBase();
-
     m_windowId = (id == -1) ? NewControlId() : id;
 
     m_backgroundColour = parent->GetBackgroundColour() ;
index 842335a91d5d4500929de98a65cf8cfb09eb39f2..5117bf5670b22c36be6099cba47a8633304b32e2 100644 (file)
@@ -294,17 +294,11 @@ bool wxWindowOS2::OS2Command(
 
 void wxWindowOS2::Init()
 {
-    //
-    // Generic
-    //
-    InitBase();
-
     //
     // PM specific
     //
     m_bWinCaptured = FALSE;
 
-    m_isBeingDeleted        = FALSE;
     m_fnOldWndProc          = NULL;
     m_bUseCtl3D             = FALSE;
     m_bMouseInWindow        = FALSE;
index 93c612e4e9fb2cb352c8bff207e0be8fcbc17820..f84025ee9b54172a76fc394d855a2cae4c1f1447 100644 (file)
@@ -99,9 +99,6 @@ END_EVENT_TABLE()
 
 void wxWindowX11::Init()
 {
-    // generic initializations first
-    InitBase();
-
     // X11-specific
     m_mainWindow = (WXWindow) 0;
     m_clientWindow = (WXWindow) 0;
@@ -111,7 +108,6 @@ void wxWindowX11::Init()
     m_winCaptured = FALSE;
     m_needsInputFocus = FALSE;
     m_isShown = TRUE;
-    m_isBeingDeleted = FALSE;
     m_lastTS = 0;
     m_lastButton = 0;
 }