This commit is contained in:
Nikos Kouremenos 2005-11-13 13:51:01 +00:00
parent c496bd604b
commit e57ce76bdd
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ import gobject
import os import os
import gtkgui_helpers import gtkgui_helpers
import vcard
from vcard import VcardWindow
from filetransfers_window import FileTransfersWindow from filetransfers_window import FileTransfersWindow
from gajim_themes_window import GajimThemesWindow from gajim_themes_window import GajimThemesWindow
from advanced import AdvancedConfigurationWindow from advanced import AdvancedConfigurationWindow
@ -613,7 +613,7 @@ class SubscriptionRequestWindow:
gajim.interface.windows[self.account]['infos'][self.jid].window.present() gajim.interface.windows[self.account]['infos'][self.jid].window.present()
else: else:
gajim.interface.windows[self.account]['infos'][self.jid] = \ gajim.interface.windows[self.account]['infos'][self.jid] = \
vcard.VcardWindow(self.jid, self.account, True) VcardWindow(self.jid, self.account, True)
#remove the publish / retrieve buttons #remove the publish / retrieve buttons
vcard_xml = gajim.interface.windows[self.account]['infos'][self.jid].xml vcard_xml = gajim.interface.windows[self.account]['infos'][self.jid].xml
hbuttonbox = vcard_xml.get_widget('information_hbuttonbox') hbuttonbox = vcard_xml.get_widget('information_hbuttonbox')