Skip to content
Snippets Groups Projects
Commit b3efd608 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

[thorstenp] fix global use

parent 7701f29b
No related branches found
No related tags found
No related merge requests found
......@@ -316,7 +316,6 @@ if __name__ == '__main__':
resolver = Resolver(idlequeue)
def clicked(widget):
global resolver
host = text_view.get_text()
def on_result(host, result_array):
print 'Result:\n' + repr(result_array)
......
......@@ -22,7 +22,7 @@ growler = None
def init():
global growler, notifications
global growler
icon = open(os.path.join(gajim.DATA_DIR, "pixmaps", "gajim.icns"), "r")
growler = GrowlNotifier(applicationName = "Gajim",
notifications = notifications,
......@@ -33,7 +33,6 @@ def init():
def notify(event_type, jid, account, msg_type, path_to_image, title, text):
global notifications
if not event_type in notifications:
event_type = GENERIC_NOTIF
if not text:
......
......@@ -6,7 +6,6 @@ copy_item = None
def menu_item_activate_cb(item, user_data):
global open_item, copy_item
print "Item activated: %s" % user_data
#g_object_get (G_OBJECT (copy_item),
......@@ -77,4 +76,4 @@ syncmenu.takeover_menu(menubar)
gtk.main()
# vim: se ts=3:
\ No newline at end of file
# vim: se ts=3:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment