diff options
author | lukefromdc <[email protected]> | 2017-07-19 17:01:16 -0400 |
---|---|---|
committer | lukefromdc <[email protected]> | 2017-08-13 14:37:24 -0400 |
commit | 3ff25047ce9cb79655a3fd7831b9bf402dcfa194 (patch) | |
tree | 8eac0dbbd9b46e07907e5efcf29c10e36d7c2104 | |
parent | e3ba085d35114af66131222f687fdf654cc71fe7 (diff) | |
download | mate-panel-3ff25047ce9cb79655a3fd7831b9bf402dcfa194.tar.bz2 mate-panel-3ff25047ce9cb79655a3fd7831b9bf402dcfa194.tar.xz |
libmate-panel-applet: fix build warning
This is a dummy variable used only to accomodate existing applets
-rw-r--r-- | libmate-panel-applet/mate-panel-applet.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libmate-panel-applet/mate-panel-applet.h b/libmate-panel-applet/mate-panel-applet.h index d24f5d85..fd299e51 100644 --- a/libmate-panel-applet/mate-panel-applet.h +++ b/libmate-panel-applet/mate-panel-applet.h @@ -149,7 +149,6 @@ int main(int argc, char* argv[]) \ GOptionContext* context; \ GError* error; \ int retval; \ - gboolean out_process; \ \ _MATE_PANEL_APPLET_SETUP_GETTEXT (TRUE); \ \ @@ -174,7 +173,7 @@ int main(int argc, char* argv[]) \ \ gtk_init (&argc, &argv); \ \ - retval = mate_panel_applet_factory_main (factory_id,out_process, type, callback, data); \ + retval = mate_panel_applet_factory_main (factory_id,TRUE, type, callback, data); \ g_option_context_free (context); \ \ return retval; \ |