]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/iphone/toolbar.mm
Set the width of the last status bar pane correctly in wxMSW.
[wxWidgets.git] / src / osx / iphone / toolbar.mm
index 7ec0bac59ccbf59278cca6f62386e26dab4e6ce7..4892a57e826cb131240917f2f1739e3a5db08e0d 100644 (file)
@@ -227,6 +227,7 @@ bool wxToolBar::Create(
     
     switch ( [[UIApplication sharedApplication] statusBarStyle] ) 
     {
+#ifdef __IPHONE_3_0
         case UIStatusBarStyleBlackOpaque:
             toolbar.barStyle = UIBarStyleBlack;
             break;
@@ -234,6 +235,7 @@ bool wxToolBar::Create(
             toolbar.barStyle = UIBarStyleBlack;
             toolbar.translucent = YES;
             break;
+#endif
         default:
             toolbar.barStyle = UIBarStyleDefault;
             break;
@@ -242,7 +244,6 @@ bool wxToolBar::Create(
 
     m_peer = new wxWidgetIPhoneImpl( this, toolbar );    
     MacPostControlCreate(pos, size) ;
-    NSLog(@"toolbar was created %@",toolbar);
 }
 
 wxToolBar::~wxToolBar()