diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-10-28 17:30:03 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-10-28 17:30:03 +0000 |
commit | 077eee4dfb25eda4db6de0f691db6a7085f9b5c2 (patch) | |
tree | 3544bee6e89f209e400fd5f26cb19283cffd6200 /gtk/gtkwindow.c | |
parent | 6bbfc7d2b616511157e8d9d907e2e37667f76449 (diff) | |
download | gdk-pixbuf-077eee4dfb25eda4db6de0f691db6a7085f9b5c2.tar.gz |
Remove some accidentally committed duplicate code.
Tue Oct 28 12:20:16 2003 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_has_toplevel_focus): Remove
some accidentally committed duplicate code.
Diffstat (limited to 'gtk/gtkwindow.c')
-rw-r--r-- | gtk/gtkwindow.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c index 35f409f51..ab1069a46 100644 --- a/gtk/gtkwindow.c +++ b/gtk/gtkwindow.c @@ -6389,29 +6389,6 @@ gtk_window_has_toplevel_focus (GtkWindow *window) return window->has_toplevel_focus; } -/** - * gtk_window_get_is_active: - * @window: a #GtkWindow - * - * Returns whether the window is part of the current active toplevel. - * The return value is %TRUE if the window is active toplevel - * itself, but also if it is a GtkPlug embedded in the active toplevel. - * You might use this function if you wanted to draw a widget - * differently in an active window from a widget in an inactive window. - * - * Return value: %TRUE if the window is the current active window. - * - * Since: 2.4 - **/ -static gboolean -gtk_window -_is_active (GtkWIndow *window) -{ - g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE); - - return window->is_active; -} - static void gtk_window_group_class_init (GtkWindowGroupClass *klass) { |