]> git.saurik.com Git - wxWidgets.git/commitdiff
Cleaned up commented-out code
authorJulian Smart <julian@anthemion.co.uk>
Tue, 19 Oct 2004 13:45:01 +0000 (13:45 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 19 Oct 2004 13:45:01 +0000 (13:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/statusbr.cpp

index b633fa4fa6fb147693832ac747e2811dad1cf34d..e0bd6f8d084fa10a4c00d52244bf9093d52bfc11 100644 (file)
@@ -66,12 +66,6 @@ void wxStatusBarGeneric::Init()
 
 wxStatusBarGeneric::~wxStatusBarGeneric()
 {
-    // VZ: what is this for? please comment...
-#ifdef __WXMSW__
-    // JACS: commenting out since it causes an assert
-    // and there seems no reason for it.
-    // SetFont(wxNullFont);
-#endif // MSW
 }
 
 bool wxStatusBarGeneric::Create(wxWindow *parent,
@@ -87,14 +81,6 @@ bool wxStatusBarGeneric::Create(wxWindow *parent,
   // The status bar should have a themed background
   SetThemeEnabled( true );
 
-  // Don't wish this to be found as a child
-  // JACS: this is not true for the Windows native version,
-  // so why should it be true here? This control can be used
-  // as a child of an arbitrary window, not just for frames.
-  // Commenting out.
-#ifndef __WXMAC__
-  // parent->GetChildren().DeleteObject(this);
-#endif
   InitColours();
   
 #ifdef __WXPM__