]> gitweb.michael.orlitzky.com - xfce4-hdaps.git/blobdiff - panel-plugin/xfce4-hdaps.c
Fix a compiler warning (cast GtkWidget -> GtkEventBox).
[xfce4-hdaps.git] / panel-plugin / xfce4-hdaps.c
index 3f0c156420c2b5daf2f3ff4eac1727a01028623d..e263ce5cf3222022edce4438a7b54f6fddca6e88 100644 (file)
@@ -40,7 +40,7 @@
 static void hdaps_construct(XfcePanelPlugin *plugin);
 
 /* Register the plugin with the panel. */
-XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL(hdaps_construct);
+XFCE_PANEL_PLUGIN_REGISTER(hdaps_construct);
 
 
 void hdaps_save(XfcePanelPlugin *plugin, HdapsPlugin *hdaps) {
@@ -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. */