]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/collpane.cpp
Add wxPanel::SetBackgroundBitmap().
[wxWidgets.git] / src / gtk / collpane.cpp
index 6696d21c01323bb9c3d9e6f2a1b7db00aae8ad42..1d7817bcdb291976bb3a85e1977172bbb737316e 100644 (file)
@@ -204,7 +204,7 @@ bool wxCollapsiblePane::Create(wxWindow *parent,
     m_parent->DoAddChild( this );
 
     PostCreation(size);
-    
+
     // we should blend into our parent background
     const wxColour bg = parent->GetBackgroundColour();
     SetBackgroundColour(bg);
@@ -249,7 +249,8 @@ bool wxCollapsiblePane::IsCollapsed() const
 
 void wxCollapsiblePane::SetLabel(const wxString &str)
 {
-    gtk_expander_set_label(GTK_EXPANDER(m_widget), wxGTK_CONV(str));
+    gtk_expander_set_label(GTK_EXPANDER(m_widget),
+                           wxGTK_CONV(GTKConvertMnemonics(str)));
 
     // FIXME: we need to update our collapsed width in some way but using GetBestSize()
     // we may get the size of the control with the pane size summed up if we are expanded!
@@ -284,7 +285,7 @@ GdkWindow *wxCollapsiblePane::GTKGetWindow(wxArrayGdkWindows& windows) const
     windows.Add( m_widget->window );
 
     return NULL;
-} 
+}
 
 #endif // wxUSE_COLLPANE && !defined(__WXUNIVERSAL__)