This commit is contained in:
Nikos Kouremenos 2005-03-02 00:13:34 +00:00
parent 844dc4ac4a
commit 77d3628666
2 changed files with 5 additions and 5 deletions

View file

@ -8242,7 +8242,7 @@ Custom</property>
<widget class="GtkLabel" id="label194"> <widget class="GtkLabel" id="label194">
<property name="visible">True</property> <property name="visible">True</property>
<property name="label" translatable="yes">Enter the user ID of the contact you would like to <property name="label" translatable="yes">Enter the user ID of the contact you would like to
send a chat messate to</property> send a chat message to</property>
<property name="use_underline">False</property> <property name="use_underline">False</property>
<property name="use_markup">False</property> <property name="use_markup">False</property>
<property name="justify">GTK_JUSTIFY_LEFT</property> <property name="justify">GTK_JUSTIFY_LEFT</property>
@ -8254,7 +8254,7 @@ send a chat messate to</property>
<property name="ypad">0</property> <property name="ypad">0</property>
</widget> </widget>
<packing> <packing>
<property name="padding">0</property> <property name="padding">5</property>
<property name="expand">False</property> <property name="expand">False</property>
<property name="fill">False</property> <property name="fill">False</property>
</packing> </packing>

View file

@ -2064,10 +2064,10 @@ class roster_window:
if self.plugin.systray_visible: if self.plugin.systray_visible:
self.window.iconify() self.window.iconify()
else: else:
self.quit_gtkui_plugin() self.quit_gtkgui_plugin()
return 1 return 1
def quit_gtkui_plugin(self): def quit_gtkgui_plugin(self):
"""When we quit the gtk plugin : """When we quit the gtk plugin :
tell that to the core and exit gtk""" tell that to the core and exit gtk"""
if self.plugin.config.has_key('saveposition'): if self.plugin.config.has_key('saveposition'):
@ -2086,7 +2086,7 @@ class roster_window:
gtk.main_quit() gtk.main_quit()
def on_quit_menuitem_activate(self, widget): def on_quit_menuitem_activate(self, widget):
self.quit_gtkui_plugin() self.quit_gtkgui_plugin()
def on_roster_treeview_row_activated(self, widget, path, col=0): def on_roster_treeview_row_activated(self, widget, path, col=0):
"""When an iter is dubble clicked : """When an iter is dubble clicked :