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:
authorTravis Shirk <travis@pobox.com>2006-01-05 06:09:54 +0300
committerTravis Shirk <travis@pobox.com>2006-01-05 06:09:54 +0300
commita950a51e28a89aeb51c493c4ba2efcf15154b3ec (patch)
tree15a0004cad8292ba2c3f4e5083a5a0d5e13c9423
parent715afc711373c144a3a5eac20bc833928da70353 (diff)
No _on signals in glade.
-rw-r--r--src/chat_control.py4
-rw-r--r--src/gtkgui.glade4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/chat_control.py b/src/chat_control.py
index e2c9ee9c6..1215ccc41 100644
--- a/src/chat_control.py
+++ b/src/chat_control.py
@@ -641,7 +641,7 @@ class ChatControl(ChatControlBase):
# restore previous conversation
self.restore_conversation()
- def _on_avatar_eventbox_enter_notify_event(self, widget, event):
+ def on_avatar_eventbox_enter_notify_event(self, widget, event):
'''we enter the eventbox area so we under conditions add a timeout
to show a bigger avatar after 0.5 sec'''
jid = self.contact.jid
@@ -664,7 +664,7 @@ class ChatControl(ChatControlBase):
self.show_bigger_avatar_timeout_id = gobject.timeout_add(500,
self.show_bigger_avatar, widget)
- def _on_avatar_eventbox_leave_notify_event(self, widget, event):
+ def on_avatar_eventbox_leave_notify_event(self, widget, event):
'''we left the eventbox area that holds the avatar img'''
# did we add a timeout? if yes remove it
if self.show_bigger_avatar_timeout_id is not None:
diff --git a/src/gtkgui.glade b/src/gtkgui.glade
index df584c04a..6b09e84db 100644
--- a/src/gtkgui.glade
+++ b/src/gtkgui.glade
@@ -19149,8 +19149,8 @@ Status message</property>
<property name="visible">True</property>
<property name="visible_window">False</property>
<property name="above_child">False</property>
- <signal name="enter_notify_event" handler="_on_avatar_eventbox_enter_notify_event" last_modification_time="Mon, 02 Jan 2006 23:13:50 GMT"/>
- <signal name="leave_notify_event" handler="_on_avatar_eventbox_leave_notify_event" last_modification_time="Mon, 02 Jan 2006 23:13:55 GMT"/>
+ <signal name="enter_notify_event" handler="on_avatar_eventbox_enter_notify_event" last_modification_time="Thu, 05 Jan 2006 03:19:02 GMT"/>
+ <signal name="leave_notify_event" handler="on_avatar_eventbox_leave_notify_event" last_modification_time="Thu, 05 Jan 2006 03:19:08 GMT"/>
<child>
<widget class="GtkImage" id="avatar_image">