Start convertion to introspection. Flat models work, as does relationship view

svn: r19858
This commit is contained in:
Benny Malengier
2012-06-17 21:25:37 +00:00
parent 0c447be83d
commit faed8a9f5f
256 changed files with 4420 additions and 4143 deletions

View File

@ -26,11 +26,11 @@ py_str = 'found %d.%d.%d' % sys.version_info[:3]
try:
import gtk
try:
gtkver_str = 'found %d.%d.%d' % gtk.gtk_version
gtkver_str = 'found %d.%d.%d' % Gtk.gtk_version
except : # any failure to 'get' the version
gtkver_str = 'unknown version'
try:
pygtkver_str = 'found %d.%d.%d' % gtk.pygtk_version
pygtkver_str = 'found %d.%d.%d' % Gtk.pygtk_version
except :# any failure to 'get' the version
pygtkver_str = 'unknown version'
except ImportError:
@ -41,7 +41,7 @@ except ImportError:
try:
import gobject
try:
gobjectver_str = 'found %d.%d.%d' % gobject.pygobject_version
gobjectver_str = 'found %d.%d.%d' % GObject.pygobject_version
except :# any failure to 'get' the version
gobjectver_str = 'unknown version'