diff --git a/ChangeLog b/ChangeLog index af7211c3df..d69137af5c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Oct 15 17:25:47 2002 Owen Taylor + + * modules/input/gtkimcontextxim.c (get_im): Don't use + connect_swapped() when the function being connected + has a non-swapped signature. + Tue Oct 15 09:54:54 2002 Owen Taylor * modules/input/gtkimcontextxim.c (get_im): Initialize diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index af7211c3df..d69137af5c 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Tue Oct 15 17:25:47 2002 Owen Taylor + + * modules/input/gtkimcontextxim.c (get_im): Don't use + connect_swapped() when the function being connected + has a non-swapped signature. + Tue Oct 15 09:54:54 2002 Owen Taylor * modules/input/gtkimcontextxim.c (get_im): Initialize diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index af7211c3df..d69137af5c 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Tue Oct 15 17:25:47 2002 Owen Taylor + + * modules/input/gtkimcontextxim.c (get_im): Don't use + connect_swapped() when the function being connected + has a non-swapped signature. + Tue Oct 15 09:54:54 2002 Owen Taylor * modules/input/gtkimcontextxim.c (get_im): Initialize diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index af7211c3df..d69137af5c 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Tue Oct 15 17:25:47 2002 Owen Taylor + + * modules/input/gtkimcontextxim.c (get_im): Don't use + connect_swapped() when the function being connected + has a non-swapped signature. + Tue Oct 15 09:54:54 2002 Owen Taylor * modules/input/gtkimcontextxim.c (get_im): Initialize diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index af7211c3df..d69137af5c 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Tue Oct 15 17:25:47 2002 Owen Taylor + + * modules/input/gtkimcontextxim.c (get_im): Don't use + connect_swapped() when the function being connected + has a non-swapped signature. + Tue Oct 15 09:54:54 2002 Owen Taylor * modules/input/gtkimcontextxim.c (get_im): Initialize diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index af7211c3df..d69137af5c 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Tue Oct 15 17:25:47 2002 Owen Taylor + + * modules/input/gtkimcontextxim.c (get_im): Don't use + connect_swapped() when the function being connected + has a non-swapped signature. + Tue Oct 15 09:54:54 2002 Owen Taylor * modules/input/gtkimcontextxim.c (get_im): Initialize diff --git a/modules/input/gtkimcontextxim.c b/modules/input/gtkimcontextxim.c index 016e2e3fb1..922f2fd606 100644 --- a/modules/input/gtkimcontextxim.c +++ b/modules/input/gtkimcontextxim.c @@ -374,8 +374,8 @@ get_im (GdkWindow *client_window, setup_im (info); - g_signal_connect_swapped (display, "closed", - G_CALLBACK (xim_info_display_closed), info); + g_signal_connect (display, "closed", + G_CALLBACK (xim_info_display_closed), info); } }