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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2010-02-23 14:25:12 +0300
committerYann Leboulanger <asterix@lagaule.org>2010-02-23 14:25:12 +0300
commit55d0afc8a7ac42f8419bd0d59444cbc62b33ee11 (patch)
treeb17f436a9f61673a91b5388a13bf737d4b56b495
parent290127fff97c06c6b7da0cde5519b7679a16fb5a (diff)
fix history window
-rw-r--r--src/history_window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/history_window.py b/src/history_window.py
index 91e9b38cc..166e5b105 100644
--- a/src/history_window.py
+++ b/src/history_window.py
@@ -158,7 +158,7 @@ class HistoryWindow:
muc_active_pix = muc_active_img.get_pixbuf()
contact_pix = contact_img.get_pixbuf()
- keys = self.completion_dict.keys()
+ keys = completion_dict.keys()
# Move the actual jid at first so we load history faster
actual_jid = self.jid_entry.get_text().decode('utf-8')
if actual_jid in keys:
@@ -243,7 +243,7 @@ class HistoryWindow:
self.results_window.set_property('visible', False)
def on_jid_entry_focus(self, widget, event):
- widget.select_region(0, -1) # select text
+ widget.select_region(0, -1) # select text
def _load_history(self, jid_or_name, account = None):
'''Load history for the given jid/name and show it'''