From ce1880927ecbb8be4f52cb58c2239b9520e00bc7 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 22 Jan 2009 18:33:36 +0000 Subject: [PATCH] remove code commited by mistake --- src/gajim.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/gajim.py b/src/gajim.py index 67755cd1b..0d65803ee 100644 --- a/src/gajim.py +++ b/src/gajim.py @@ -423,7 +423,6 @@ parser = optparser.OptionsParser(config_filename) import roster_window import profile_window import config -from threading import Thread class PassphraseRequest: @@ -483,22 +482,6 @@ class PassphraseRequest: cancel_handler=_cancel) self.dialog_created = True - -class ThreadInterface: - def __init__(self, func, func_args, callback, callback_args): - '''Call a function in a thread - - :param func: the function to call in the thread - :param func_args: list or arguments for this function - :param callback: callback to call once function is finished - :param callback_args: list of arguments for this callback - ''' - def thread_function(func, func_args, callback, callback_args): - output = func(*func_args) - gobject.idle_add(callback, output, *callback_args) - Thread(target=thread_function, args=(func, func_args, callback, - callback_args)).start() - class Interface: ################################################################################ @@ -3081,7 +3064,6 @@ class Interface: def __init__(self): gajim.interface = self - gajim.thread_interface = ThreadInterface # This is the manager and factory of message windows set by the module self.msg_win_mgr = None self.jabber_state_images = {'16': {}, '32': {}, 'opened': {},