Fix wrong argument when emit IBusHotkeyProfile::trigger signal
authorPeng Huang <shawn.p.huang@gmail.com>
Tue, 28 Apr 2009 07:30:02 +0000 (15:30 +0800)
committerPeng Huang <shawn.p.huang@gmail.com>
Tue, 28 Apr 2009 07:30:02 +0000 (15:30 +0800)
src/ibushotkey.c

index 1d3a4b3..91eab97 100644 (file)
@@ -478,7 +478,7 @@ ibus_hotkey_profile_filter_key_event (IBusHotkeyProfile *profile,
     GQuark event = (GQuark) GPOINTER_TO_UINT (g_tree_lookup (priv->hotkeys, &hotkey));
 
     if (event != 0) {
-        g_signal_emit (profile, profile_signals[TRIGGER], event, event, user_data);
+        g_signal_emit (profile, profile_signals[TRIGGER], event, user_data);
     }
 
     return event;