GObject -> GLib

This commit is contained in:
Denis Fomin 2013-07-30 23:00:27 +04:00
parent 1b9e079826
commit de2383407c
1 changed files with 3 additions and 4 deletions

View File

@ -29,7 +29,7 @@ __all__ = ['PluginsWindow']
from gi.repository import Pango from gi.repository import Pango
from gi.repository import Gtk from gi.repository import Gtk
from gi.repository import GdkPixbuf from gi.repository import GdkPixbuf
from gi.repository import GObject from gi.repository import GLib
import os import os
import gtkgui_helpers import gtkgui_helpers
@ -68,8 +68,7 @@ class PluginsWindow(object):
for widget_name in widgets_to_extract: for widget_name in widgets_to_extract:
setattr(self, widget_name, self.xml.get_object(widget_name)) setattr(self, widget_name, self.xml.get_object(widget_name))
self.installed_plugins_model = Gtk.ListStore(GObject.TYPE_PYOBJECT, self.installed_plugins_model = Gtk.ListStore(object, str, bool, bool,
GObject.TYPE_STRING, GObject.TYPE_BOOLEAN, GObject.TYPE_BOOLEAN,
GdkPixbuf.Pixbuf) GdkPixbuf.Pixbuf)
self.installed_plugins_treeview.set_model(self.installed_plugins_model) self.installed_plugins_treeview.set_model(self.installed_plugins_model)
self.installed_plugins_treeview.set_rules_hint(True) self.installed_plugins_treeview.set_rules_hint(True)
@ -117,7 +116,7 @@ class PluginsWindow(object):
def on_plugins_notebook_switch_page(self, widget, page, page_num): def on_plugins_notebook_switch_page(self, widget, page, page_num):
GObject.idle_add(self.xml.get_object('close_button').grab_focus) GLib.idle_add(self.xml.get_object('close_button').grab_focus)
@log_calls('PluginsWindow') @log_calls('PluginsWindow')
def installed_plugins_treeview_selection_changed(self, treeview_selection): def installed_plugins_treeview_selection_changed(self, treeview_selection):