changeset 46a815d57b77 in /home/hg/repos/gajim

author: Yann Leboulanger <aste...@lagaule.org>
branches: gajim_0.16
details:http://hg.gajim.org/gajim?cmd=changeset;node=46a815d57b77
description: set title of fingerprint dialog. Fixes #7239

diffstat:

 src/dialogs.py |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r da1e81092680 -r 46a815d57b77 src/dialogs.py
--- a/src/dialogs.py    Thu Sep 12 17:41:33 2013 +0200
+++ b/src/dialogs.py    Fri Sep 13 07:30:09 2013 +0200
@@ -5417,6 +5417,7 @@
         YesNoDialog.__init__(self, pritext, sectext=sectext,
             checktext=checktext, on_response_yes=on_response_yes,
             on_response_no=on_response_no)
+        self.set_title(_('SSL Certificate Verification for %s') % account)
         b = gtk.Button(_('View cert...'))
         b.connect('clicked', self.on_cert_clicked)
         b.show_all()
@@ -5441,5 +5442,4 @@
         area.pack_start(b)
 
     def on_cert_clicked(self, button):
-        d = CertificatDialog(self, self.account, self.cert)
-        d.set_title(_('Certificate'))
+        CertificatDialog(self, self.account, self.cert)
_______________________________________________
Commits mailing list
Commits@gajim.org
http://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to