[pitivi] GstDynamicWidget: port combobox to Gtk3 API.



commit 14a6044e41848dca910763d75f3c1d70537f7f66
Author: Mathieu Duponchelle <mathieu duponchelle epitech eu>
Date:   Thu Aug 22 00:46:45 2013 +0200

    GstDynamicWidget: port combobox to Gtk3 API.

 pitivi/utils/widgets.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/pitivi/utils/widgets.py b/pitivi/utils/widgets.py
index ea80dca..83d8661 100644
--- a/pitivi/utils/widgets.py
+++ b/pitivi/utils/widgets.py
@@ -124,7 +124,7 @@ class TextWidget(Gtk.HBox, DynamicWidget):
         self.set_border_width(0)
         self.set_spacing(0)
         if choices:
-            self.combo = Gtk.combo_box_entry_new_text()
+            self.combo = Gtk.ComboBoxText.new_with_entry()
             self.text = self.combo.get_child()
             self.combo.show()
             self.pack_start(self.combo, True, True, 0)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]