]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/tbargtk.cpp
correct a bug in the MSW code using wxMask
[wxWidgets.git] / src / gtk / tbargtk.cpp
index 5af767a335151ac35751169244a838bc2e223412..d8323989a0d3ee32d919e3281d50731691ce01e1 100644 (file)
@@ -118,6 +118,12 @@ bool wxToolBar::Create( wxWindow *parent, wxWindowID id,
                                            
   gtk_toolbar_set_tooltips( GTK_TOOLBAR(m_toolbar), TRUE );
 
+  gtk_toolbar_append_space( m_toolbar );
+  
+  m_parent->AddChild( this );
+
+  (m_parent->m_insertCallback)( m_parent, this );
+  
   PostCreation();
 
   Show( TRUE );
@@ -246,7 +252,7 @@ void wxToolBar::Realize()
     node = node->Next();
   }
   
-  m_height += 10;
+  m_height += 12;
 }
 
 void wxToolBar::EnableTool(int toolIndex, bool enable)
@@ -332,7 +338,7 @@ bool wxToolBar::GetToolEnabled(int toolIndex) const
 
 void wxToolBar::SetMargins( int WXUNUSED(x), int WXUNUSED(y) )
 {
-  wxFAIL_MSG( "wxToolBar::SetMargins not implemented" );
+//  wxFAIL_MSG( "wxToolBar::SetMargins not implemented" );
 }
 
 void wxToolBar::SetToolPacking( int WXUNUSED(packing) )