remove unused function
This commit is contained in:
parent
3184cb24d0
commit
f18d97b97a
|
@ -1137,17 +1137,6 @@ class HigDialog(gtk.MessageDialog):
|
|||
vb.grab_focus()
|
||||
self.show_all()
|
||||
|
||||
def get_response(self):
|
||||
'''Be carefull: this function uses dialog.run() function so GUI is not updated'''
|
||||
# Give focus to top vbox
|
||||
vb = self.get_children()[0].get_children()[0]
|
||||
vb.set_flags(gtk.CAN_FOCUS)
|
||||
vb.grab_focus()
|
||||
self.show_all()
|
||||
response = self.run()
|
||||
self.destroy()
|
||||
return response
|
||||
|
||||
class FileChooserDialog(gtk.FileChooserDialog):
|
||||
'''Non-blocking FileChooser Dialog around gtk.FileChooserDialog'''
|
||||
def __init__(self, title_text, action, buttons, default_response,
|
||||
|
@ -1541,8 +1530,6 @@ class DubbleInputDialog:
|
|||
'''Class for Dubble Input dialog'''
|
||||
def __init__(self, title, label_str1, label_str2, input_str1=None,
|
||||
input_str2=None, is_modal=True, ok_handler=None, cancel_handler=None):
|
||||
# if modal is True you also need to call get_response()
|
||||
# and ok_handler won't be used
|
||||
self.xml = gtkgui_helpers.get_glade('dubbleinput_dialog.glade')
|
||||
self.dialog = self.xml.get_widget('dubbleinput_dialog')
|
||||
label1 = self.xml.get_widget('label1')
|
||||
|
|
|
@ -352,8 +352,10 @@ if pid_alive():
|
|||
pritext = _('Gajim is already running')
|
||||
sectext = _('Another instance of Gajim seems to be running\nRun anyway?')
|
||||
dialog = dialogs.YesNoDialog(pritext, sectext)
|
||||
if dialog.get_response() != gtk.RESPONSE_YES:
|
||||
dialog.popup()
|
||||
if dialog.tun() != gtk.RESPONSE_YES:
|
||||
sys.exit(3)
|
||||
dialog.destroy()
|
||||
# run anyway, delete pid and useless global vars
|
||||
if os.path.exists(pid_filename):
|
||||
os.remove(pid_filename)
|
||||
|
|
Loading…
Reference in New Issue