From b35b2f9ad0d477dd86397f1d433a26e9ba92277c Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 17 Apr 2008 19:26:09 +0000 Subject: [PATCH] fix function call. fixes #3875 --- src/systray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systray.py b/src/systray.py index 48d9830b1..9e634280b 100644 --- a/src/systray.py +++ b/src/systray.py @@ -151,7 +151,7 @@ class Systray: # We need our own set of status icons, let's make 'em! iconset = gajim.config.get('iconset') path = os.path.join(helpers.get_iconset_path(iconset), '16x16') - state_images = gajim.interface.load_iconset(path) + state_images = gtkgui_helpers.load_iconset(path) if state_images.has_key('muc_active'): join_gc_menuitem.set_image(state_images['muc_active'])