Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Fomin <fominde@gmail.com>2011-08-25 12:12:50 +0400
committerDenis Fomin <fominde@gmail.com>2011-08-25 12:12:50 +0400
commitcf35269819b3b24ff7afcf20d96ac14b793015e8 (patch)
treed6d1255f9fd259c3743a439d2e3b7d2589459f2a
parent410b642446631236897fd30c6bebbe4c9a9fb22c (diff)
clients_icons. quick fix after last update
-rw-r--r--clients_icons/clients_icons.py8
-rw-r--r--clients_icons/manifest.ini2
2 files changed, 5 insertions, 5 deletions
diff --git a/clients_icons/clients_icons.py b/clients_icons/clients_icons.py
index fd873ab..fb7dcff 100644
--- a/clients_icons/clients_icons.py
+++ b/clients_icons/clients_icons.py
@@ -196,10 +196,10 @@ class ClientsIconsPlugin(GajimPlugin):
chat_control.fill_column(col)
chat_control.list_treeview.insert_column(col, 0)
# redraw roster
- store = gtk.TreeStore(*chat_control.columns)
- store.set_sort_func(1, chat_control.tree_compare_iters)
- store.set_sort_column_id(1, gtk.SORT_ASCENDING)
- chat_control.list_treeview.set_model(store)
+ chat_control.model = gtk.TreeStore(*chat_control.columns)
+ chat_control.model.set_sort_func(1, chat_control.tree_compare_iters)
+ chat_control.model.set_sort_column_id(1, gtk.SORT_ASCENDING)
+ chat_control.list_treeview.set_model(chat_control.model)
# draw roster
for nick in gajim.contacts.get_nick_list(chat_control.account,
chat_control.room_jid):
diff --git a/clients_icons/manifest.ini b/clients_icons/manifest.ini
index 95cd8aa..53b04f5 100644
--- a/clients_icons/manifest.ini
+++ b/clients_icons/manifest.ini
@@ -1,7 +1,7 @@
[info]
name: Clients icons
short_name: clients_icons
-version: 0.9.1
+version: 1.0
description: Shows the client icons in the roster
and in groupchats.
Depends: Gajim > r12506