mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Don't call status_window_set_text() if the status window doesn't already
Sat Dec 14 22:03:21 2002 Owen Taylor <otaylor@redhat.com> * modules/input/gtkimcontextxim.c (status_window_hide): Don't call status_window_set_text() if the status window doesn't already exist. (#100933, reported by Anand Subra) * modules/input/gtkimcontextxim.c (status_window_show): Don't bother creating the status window here, wait for the set_text(). (Fixes a warning)
This commit is contained in:
parent
8ba71578f2
commit
aeb608afec
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
Sat Dec 14 22:03:21 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_hide): Don't
|
||||
call status_window_set_text() if the status window doesn't
|
||||
already exist. (#100933, reported by Anand Subra)
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_show):
|
||||
Don't bother creating the status window here, wait for
|
||||
the set_text(). (Fixes a warning)
|
||||
|
||||
2002-12-15 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcalendar.c:
|
||||
|
@ -1,3 +1,13 @@
|
||||
Sat Dec 14 22:03:21 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_hide): Don't
|
||||
call status_window_set_text() if the status window doesn't
|
||||
already exist. (#100933, reported by Anand Subra)
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_show):
|
||||
Don't bother creating the status window here, wait for
|
||||
the set_text(). (Fixes a warning)
|
||||
|
||||
2002-12-15 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcalendar.c:
|
||||
|
@ -1,3 +1,13 @@
|
||||
Sat Dec 14 22:03:21 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_hide): Don't
|
||||
call status_window_set_text() if the status window doesn't
|
||||
already exist. (#100933, reported by Anand Subra)
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_show):
|
||||
Don't bother creating the status window here, wait for
|
||||
the set_text(). (Fixes a warning)
|
||||
|
||||
2002-12-15 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcalendar.c:
|
||||
|
@ -1,3 +1,13 @@
|
||||
Sat Dec 14 22:03:21 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_hide): Don't
|
||||
call status_window_set_text() if the status window doesn't
|
||||
already exist. (#100933, reported by Anand Subra)
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_show):
|
||||
Don't bother creating the status window here, wait for
|
||||
the set_text(). (Fixes a warning)
|
||||
|
||||
2002-12-15 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcalendar.c:
|
||||
|
@ -1,3 +1,13 @@
|
||||
Sat Dec 14 22:03:21 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_hide): Don't
|
||||
call status_window_set_text() if the status window doesn't
|
||||
already exist. (#100933, reported by Anand Subra)
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_show):
|
||||
Don't bother creating the status window here, wait for
|
||||
the set_text(). (Fixes a warning)
|
||||
|
||||
2002-12-15 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcalendar.c:
|
||||
|
@ -1,3 +1,13 @@
|
||||
Sat Dec 14 22:03:21 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_hide): Don't
|
||||
call status_window_set_text() if the status window doesn't
|
||||
already exist. (#100933, reported by Anand Subra)
|
||||
|
||||
* modules/input/gtkimcontextxim.c (status_window_show):
|
||||
Don't bother creating the status window here, wait for
|
||||
the set_text(). (Fixes a warning)
|
||||
|
||||
2002-12-15 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcalendar.c:
|
||||
|
@ -1300,8 +1300,6 @@ status_window_has_text (GtkWidget *status_window)
|
||||
static void
|
||||
status_window_show (GtkIMContextXIM *context_xim)
|
||||
{
|
||||
GtkWidget *status_window = status_window_get (context_xim, TRUE);
|
||||
|
||||
context_xim->status_visible = TRUE;
|
||||
}
|
||||
|
||||
@ -1311,8 +1309,9 @@ status_window_hide (GtkIMContextXIM *context_xim)
|
||||
GtkWidget *status_window = status_window_get (context_xim, FALSE);
|
||||
|
||||
context_xim->status_visible = FALSE;
|
||||
|
||||
status_window_set_text (context_xim, "");
|
||||
|
||||
if (status_window)
|
||||
status_window_set_text (context_xim, "");
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user