From 4c75c558e0b320f39eb9072f13c84b70045f503c Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Fri, 26 Aug 2005 12:55:17 +0000 Subject: [PATCH] s/new_user/new_tab/ --- src/roster_window.py | 2 +- src/tabbed_chat_window.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/roster_window.py b/src/roster_window.py index f75c2a5b0..568cac780 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -1356,7 +1356,7 @@ _('If "%s" accepts this request you will know his status.') %jid) self.plugin.windows[account]['chats']['tabbed'] = \ tabbed_chat_window.TabbedChatWindow(contact, self.plugin, account) else: - self.plugin.windows[account]['chats']['tabbed'].new_user(contact) + self.plugin.windows[account]['chats']['tabbed'].new_tab(contact) self.plugin.windows[account]['chats'][contact.jid] = \ self.plugin.windows[account]['chats']['tabbed'] diff --git a/src/tabbed_chat_window.py b/src/tabbed_chat_window.py index 08d3c38b1..f7228bd37 100644 --- a/src/tabbed_chat_window.py +++ b/src/tabbed_chat_window.py @@ -53,10 +53,10 @@ class TabbedChatWindow(chat.Chat): self.possible_inactive_timeout_id = {} self.TARGET_TYPE_URI_LIST = 80 self.dnd_list = [ ( 'text/uri-list', 0, self.TARGET_TYPE_URI_LIST ) ] - self.new_user(user) + self.new_tab(user) self.show_title() - # NOTE: if it not a window event, connect in new_user function + # NOTE: if it not a window event, connect in new_tab function signal_dict = { 'on_tabbed_chat_window_destroy': self.on_tabbed_chat_window_destroy, 'on_tabbed_chat_window_delete_event': self.on_tabbed_chat_window_delete_event, @@ -350,7 +350,7 @@ timestamp, contact): chat.Chat.remove_tab(self, jid, 'chats') del self.contacts[jid] - def new_user(self, contact): + def new_tab(self, contact): '''when new tab is created''' self.names[contact.jid] = contact.name self.xmls[contact.jid] = gtk.glade.XML(GTKGUI_GLADE, 'chats_vbox', APP)