summaryrefslogtreecommitdiff
path: root/mcs-plugin/workspaces.c
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2004-01-13 20:13:16 +0000
committerBenedikt Meurer <benny@xfce.org>2004-01-13 20:13:16 +0000
commit446c4ec7a6af8bd8652ec645a7ff38c5c7df855d (patch)
tree5674386c8cab5e9d112ff4a816c3194fbd03f6ff /mcs-plugin/workspaces.c
parent0838aa69525f79734c9f6c21f56d931259ee02de (diff)
downloadxfwm4-446c4ec7a6af8bd8652ec645a7ff38c5c7df855d.tar.gz
Various fixes to get the beast compiled with gcc 3.3.x and -Wall -Werror.
We have to take special care about new ISO C aliasing rules. (Old svn revision: 11526)
Diffstat (limited to 'mcs-plugin/workspaces.c')
-rw-r--r--mcs-plugin/workspaces.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mcs-plugin/workspaces.c b/mcs-plugin/workspaces.c
index 97fc4ff9e..ed820a75a 100644
--- a/mcs-plugin/workspaces.c
+++ b/mcs-plugin/workspaces.c
@@ -571,6 +571,9 @@ update_channel (NetkScreen * screen, NetkWorkspace * ws, McsManager * manager)
static void
watch_workspaces_hint (McsManager * manager)
{
+ /* make GCC happy */
+ (void)&watch_workspaces_hint;
+
g_signal_connect (netk_screen, "workspace-created",
G_CALLBACK (update_channel), manager);
g_signal_connect (netk_screen, "workspace-destroyed",