Gentoo Archives: gentoo-commits

From: "Ian Stakenvicius (axs)" <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/k3d/files: k3d-0.7.11.0-gtk-liststore-vs-treemodel.patch
Date: Fri, 01 Jun 2012 17:32:53
Message-Id: 20120601173233.A10962004B@flycatcher.gentoo.org
1 axs 12/06/01 17:32:33
2
3 Added: k3d-0.7.11.0-gtk-liststore-vs-treemodel.patch
4 Log:
5 fixed compilation issue described in bug 384011, and added a missing config switch related to python
6
7 (Portage version: 2.1.10.49/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-gfx/k3d/files/k3d-0.7.11.0-gtk-liststore-vs-treemodel.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/k3d/files/k3d-0.7.11.0-gtk-liststore-vs-treemodel.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/k3d/files/k3d-0.7.11.0-gtk-liststore-vs-treemodel.patch?rev=1.1&content-type=text/plain
14
15 Index: k3d-0.7.11.0-gtk-liststore-vs-treemodel.patch
16 ===================================================================
17 --- a/k3dsdk/ngui/main_document_window.cpp 2009-03-19 16:28:51.000000000 -0400
18 +++ b/k3dsdk/ngui/main_document_window.cpp 2012-06-01 12:26:53.000000000 -0400
19 @@ -1569,7 +1569,7 @@
20 Gtk::HBox import_box(false, 5);
21 Gtk::Label import_label(_("Choose import plugin:"));
22
23 - Gtk::ComboBox import_combo(model);
24 + Gtk::ComboBox import_combo((Glib::RefPtr<Gtk::TreeModel> &)model);
25 import_combo.pack_start(columns.icon, false);
26 import_combo.pack_start(columns.label);
27 import_combo.set_active(0);
28 @@ -1659,7 +1659,7 @@
29 Gtk::HBox export_box(false, 5);
30 Gtk::Label export_label(_("Choose export plugin:"));
31
32 - Gtk::ComboBox export_combo(model);
33 + Gtk::ComboBox export_combo((Glib::RefPtr<Gtk::TreeModel> &)model);
34 export_combo.pack_start(columns.icon, false);
35 export_combo.pack_start(columns.label);
36 export_combo.set_active(0);
37 --- a/k3dsdk/ngui/render.cpp 2009-03-19 16:28:51.000000000 -0400
38 +++ b/k3dsdk/ngui/render.cpp 2012-06-01 12:38:09.000000000 -0400
39 @@ -162,7 +162,7 @@
40 row[columns.separator] = false;
41 }
42
43 - Gtk::ComboBox combo(model);
44 + Gtk::ComboBox combo((Glib::RefPtr<Gtk::TreeModel> &)model);
45
46 combo.pack_start(columns.icon, false);
47
48 @@ -286,7 +286,7 @@
49 row[columns.separator] = false;
50 }
51
52 - Gtk::ComboBox combo(model);
53 + Gtk::ComboBox combo((Glib::RefPtr<Gtk::TreeModel> &)model);
54
55 combo.pack_start(columns.icon, false);