[Xfce4-commits] r26808 - xfce-mcs-plugins/branches/xfce-plugins-stephan/plugins/appearance-plugin
Stephan Arts
stephan at xfce.org
Wed Apr 9 09:21:06 CEST 2008
Author: stephan
Date: 2008-04-09 07:21:05 +0000 (Wed, 09 Apr 2008)
New Revision: 26808
Modified:
xfce-mcs-plugins/branches/xfce-plugins-stephan/plugins/appearance-plugin/main.c
Log:
Fix compile-errors with --enable-debug=full
Modified: xfce-mcs-plugins/branches/xfce-plugins-stephan/plugins/appearance-plugin/main.c
===================================================================
--- xfce-mcs-plugins/branches/xfce-plugins-stephan/plugins/appearance-plugin/main.c 2008-04-09 06:53:02 UTC (rev 26807)
+++ xfce-mcs-plugins/branches/xfce-plugins-stephan/plugins/appearance-plugin/main.c 2008-04-09 07:21:05 UTC (rev 26808)
@@ -77,11 +77,13 @@
gtk_widget_show_all(ui_dialog);
ui_dialog_load_settings(UI_DIALOG(ui_dialog));
- gint result = gtk_dialog_run(ui_dialog);
+ gint result = gtk_dialog_run(GTK_DIALOG(ui_dialog));
if (result == GTK_RESPONSE_CLOSE)
{
ui_dialog_save_settings(UI_DIALOG(ui_dialog));
}
xfconf_shutdown();
+
+ return 0;
}
More information about the Xfce4-commits
mailing list