]> gitweb.michael.orlitzky.com - xfce4-hdaps.git/commitdiff
Fix a compiler warning (cast GtkWidget -> GtkEventBox).
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 3 Jun 2012 00:50:03 +0000 (20:50 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 3 Jun 2012 00:50:03 +0000 (20:50 -0400)
panel-plugin/xfce4-hdaps.c

index 732224c4e5dfe7e65ead2845e38eab56b8c11c82..e263ce5cf3222022edce4438a7b54f6fddca6e88 100644 (file)
@@ -252,7 +252,7 @@ static HdapsPlugin *hdaps_new(XfcePanelPlugin *plugin) {
   /* Make the event box transparent. In newer versions of xfce4-panel
      users can make the panel transparent, so we don't want to stick a
      big opaque box on it. */
-  gtk_event_box_set_visible_window(hdaps->eventbox, FALSE);
+  gtk_event_box_set_visible_window(GTK_EVENT_BOX(hdaps->eventbox), FALSE);
 
   /* Set up the hvbox for the widget, which supports
      both horizontal and vertical (hv) orientations. */