From aa61fdbc53644149cb1415791e95f2e9b5ad7a6f Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 21 Nov 2008 15:33:00 +0000 Subject: [PATCH] revert some broken bits from previous patch that weren't supposed to have been committed svn path=/trunk/; revision=74 --- src/shell-global.c | 16 ---------------- src/shell-global.h | 4 +--- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/src/shell-global.c b/src/shell-global.c index 7f49cd5fb..d469c9875 100644 --- a/src/shell-global.c +++ b/src/shell-global.c @@ -289,19 +289,3 @@ shell_global_focus_stage (ShellGlobal *global) Window stagewin = clutter_x11_get_stage_window (stage); XSetInputFocus (xdisplay, stagewin, RevertToParent, CurrentTime); } - -ClutterActor * -shell_global_get_overlay_group (ShellGlobal *global) -{ - g_return_val_if_fail (SHELL_IS_GLOBAL (global), NULL); - - return mutter_plugin_get_overlay_group (global->plugin); -} - -ClutterActor * -shell_global_get_window_group (ShellGlobal *global) -{ - g_return_val_if_fail (SHELL_IS_GLOBAL (global), NULL); - - return mutter_plugin_get_window_group (global->plugin); -} diff --git a/src/shell-global.h b/src/shell-global.h index 83de63438..d85796234 100644 --- a/src/shell-global.h +++ b/src/shell-global.h @@ -42,9 +42,7 @@ void shell_global_set_stage_input_area (ShellGlobal *global, int width, int height); -GList *shell_global_get_windows (ShellGlobal *global); -ClutterActor *shell_global_get_window_group (ShellGlobal *global); -ClutterActor *shell_global_get_overlay_group (ShellGlobal *global); +GList *shell_global_get_windows (ShellGlobal *global); void _shell_global_set_plugin (ShellGlobal *global, MutterPlugin *plugin);