Changed all gobject.TYPE_UINT64 to gobject.TYPE_ULONG - it's more

future-compatible this way.
This commit is contained in:
Alex Dedul 2007-07-16 22:46:32 +00:00
parent 26b74f442a
commit 27cf24a679
2 changed files with 4 additions and 4 deletions

View File

@ -53,9 +53,9 @@ class FilesManager:
# in self.update_torrent_info_widget
self.file_store_dict = {}
if self.is_file_tab:
self.file_store = gtk.ListStore(bool, str, gobject.TYPE_UINT64, float)
self.file_store = gtk.ListStore(bool, str, gobject.TYPE_ULONG, float)
else:
self.file_store = gtk.ListStore(bool, str, gobject.TYPE_UINT64)
self.file_store = gtk.ListStore(bool, str, gobject.TYPE_ULONG)
self.file_store_sorted = gtk.TreeModelSort(self.file_store)
def use_unique_id(self, unique_id):

View File

@ -431,8 +431,8 @@ class DelugeGTK:
# unique_ID, Q#, Status Icon, Name, Size, Progress, Message, Seeders, Peers,
# DL, UL, ETA, Share
self.torrent_model = gtk.ListStore(int, gobject.TYPE_UINT,
gtk.gdk.Pixbuf, str, gobject.TYPE_UINT64, float, str, int, int,
int, int, int, int, gobject.TYPE_UINT64, float)
gtk.gdk.Pixbuf, str, gobject.TYPE_ULONG, float, str, int, int,
int, int, int, int, gobject.TYPE_ULONG, float)
# Stores unique_ID -> gtk.TreeRowReference's mapping for quick look up
self.torrent_model_dict = {}