diff options
author | lukefromdc <[email protected]> | 2017-07-17 15:45:38 -0400 |
---|---|---|
committer | lukefromdc <[email protected]> | 2017-08-13 14:37:24 -0400 |
commit | 94d8d911c873fce175b808e64addc89823252ffb (patch) | |
tree | 1186fdf0978def4f20881ce8d4e5a807997281e5 /libmate-panel-applet/mate-panel-applet.h | |
parent | 50adc8501aa740b2bbcde50ce0adc780e79536aa (diff) | |
download | mate-panel-94d8d911c873fce175b808e64addc89823252ffb.tar.bz2 mate-panel-94d8d911c873fce175b808e64addc89823252ffb.tar.xz |
libmate-panel-applet: include dummy variable in factory for certian applets
Otherwise, some applets such as disk mounter, hardware monitor, cpufreq won't start.
* Fixes all but invest, note that cpufreq needs to be rebuilt against this for the menu to work
* Also fix two new build warnings
Diffstat (limited to 'libmate-panel-applet/mate-panel-applet.h')
-rw-r--r-- | libmate-panel-applet/mate-panel-applet.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libmate-panel-applet/mate-panel-applet.h b/libmate-panel-applet/mate-panel-applet.h index 842a2ab9..d24f5d85 100644 --- a/libmate-panel-applet/mate-panel-applet.h +++ b/libmate-panel-applet/mate-panel-applet.h @@ -112,10 +112,10 @@ void mate_panel_applet_request_focus(MatePanelApplet* applet, guint32 timestamp) void mate_panel_applet_setup_menu(MatePanelApplet* applet, const gchar* xml, GtkActionGroup* action_group); void mate_panel_applet_setup_menu_from_file(MatePanelApplet* applet, const gchar* filename, GtkActionGroup* action_group); -int mate_panel_applet_factory_main(const gchar* factory_factory_id, GType applet_type, MatePanelAppletFactoryCallback callback, gpointer data); +int mate_panel_applet_factory_main(const gchar* factory_factory_id,gboolean out_process, GType applet_type, MatePanelAppletFactoryCallback callback, gpointer data); gboolean _mate_panel_applet_shlib_factory(void); -int panel_applet_factory_setup_in_process (const gchar *factory_factory_id, +int mate_panel_applet_factory_setup_in_process (const gchar *factory_factory_id, GType applet_type, MatePanelAppletFactoryCallback callback, gpointer data); @@ -149,6 +149,7 @@ int main(int argc, char* argv[]) \ GOptionContext* context; \ GError* error; \ int retval; \ + gboolean out_process; \ \ _MATE_PANEL_APPLET_SETUP_GETTEXT (TRUE); \ \ @@ -173,7 +174,7 @@ int main(int argc, char* argv[]) \ \ gtk_init (&argc, &argv); \ \ - retval = mate_panel_applet_factory_main (factory_id, type, callback, data); \ + retval = mate_panel_applet_factory_main (factory_id,out_process, type, callback, data); \ g_option_context_free (context); \ \ return retval; \ |