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 | |
parent | 8791df04db4267b1f054755920cbc85168229e49 (diff) | |
download | gdk-pixbuf-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)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 6 | ||||
-rw-r--r-- | gtk/gtkimcontextsimple.c | 2 |
7 files changed, 37 insertions, 1 deletions
@@ -1,3 +1,9 @@ +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) + Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com> * tests/testcalendar.c (calendar_date_to_string): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index c8c6910e9..936c92346 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +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) + Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com> * tests/testcalendar.c (calendar_date_to_string): diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index c8c6910e9..936c92346 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +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) + Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com> * tests/testcalendar.c (calendar_date_to_string): diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index c8c6910e9..936c92346 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +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) + Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com> * tests/testcalendar.c (calendar_date_to_string): diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index c8c6910e9..936c92346 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +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) + Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com> * tests/testcalendar.c (calendar_date_to_string): diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index c8c6910e9..936c92346 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +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) + Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com> * tests/testcalendar.c (calendar_date_to_string): diff --git a/gtk/gtkimcontextsimple.c b/gtk/gtkimcontextsimple.c index e88c3f282..a39b7c74c 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; } |