From 4c11520ea2bb118ce66b97a214bb835b32de70e9 Mon Sep 17 00:00:00 2001 From: Peng Huang Date: Tue, 28 Apr 2009 15:30:02 +0800 Subject: [PATCH] Fix wrong argument when emit IBusHotkeyProfile::trigger signal --- src/ibushotkey.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ibushotkey.c b/src/ibushotkey.c index 1d3a4b3..91eab97 100644 --- a/src/ibushotkey.c +++ b/src/ibushotkey.c @@ -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; -- 2.7.4