diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-11-07 20:32:27 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-11-07 20:32:27 +0000 |
commit | 6e43dea3e19c3e0b86e28245b7caaca3fbba37e6 (patch) | |
tree | ff5d808f20ac726b50266fd58eb4b64479aca566 /gtk/gtkimcontextsimple.c | |
parent | 8791df04db4267b1f054755920cbc85168229e49 (diff) | |
download | gtk+-6e43dea3e19c3e0b86e28245b7caaca3fbba37e6.tar.gz |
Use '_' not '-' in signal name to be consistent with what we do elsewhere
Thu Nov 7 15:29:43 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontextsimple.c (check_hex): Use '_'
not '-' in signal name to be consistent with
what we do elsewhere (#97151, TOKUNAGA Hiroyuki)
Diffstat (limited to 'gtk/gtkimcontextsimple.c')
-rw-r--r-- | gtk/gtkimcontextsimple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkimcontextsimple.c b/gtk/gtkimcontextsimple.c index e88c3f282a..a39b7c74cc 100644 --- a/gtk/gtkimcontextsimple.c +++ b/gtk/gtkimcontextsimple.c @@ -1109,7 +1109,7 @@ check_hex (GtkIMContextSimple *context_simple, context_simple->tentative_match = n; context_simple->tentative_match_len = n_compose; - g_signal_emit_by_name (context_simple, "preedit-changed"); + g_signal_emit_by_name (context_simple, "preedit_changed"); return TRUE; } |