summaryrefslogtreecommitdiff
path: root/databases/mysql-workbench/patches/patch-frontend_linux_linux_utilities_toolbar_manager.cpp
blob: 7327bd069b402d7bd565829304d0e3b864bb2022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-frontend_linux_linux_utilities_toolbar_manager.cpp,v 1.2 2012/09/07 19:16:20 adam Exp $

Fix building with newer Gtkmm.

--- frontend/linux/linux_utilities/toolbar_manager.cpp.orig	2012-08-09 20:57:01.000000000 +0000
+++ frontend/linux/linux_utilities/toolbar_manager.cpp
@@ -30,7 +30,7 @@ static Gtk::ComboBox *create_color_combo
   }
 
   Glib::RefPtr<Gtk::ListStore> model= Gtk::ListStore::create(*color_combo_columns);
-  Gtk::ComboBox *combo= new Gtk::ComboBox(Glib::RefPtr<Gtk::TreeModel>(model));
+  Gtk::ComboBox *combo= new Gtk::ComboBox(Glib::RefPtr<Gtk::TreeModel>(model), false);
 
   combo->pack_start(color_combo_columns->image);