summaryrefslogtreecommitdiff
path: root/libmate-panel-applet/mate-panel-applet-factory.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmate-panel-applet/mate-panel-applet-factory.c')
-rw-r--r--libmate-panel-applet/mate-panel-applet-factory.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/libmate-panel-applet/mate-panel-applet-factory.c b/libmate-panel-applet/mate-panel-applet-factory.c
index 815ad491..521ab4d4 100644
--- a/libmate-panel-applet/mate-panel-applet-factory.c
+++ b/libmate-panel-applet/mate-panel-applet-factory.c
@@ -2,6 +2,7 @@
* mate-panel-applet-factory.c: panel applet writing API.
*
* Copyright (C) 2010 Carlos Garcia Campos <[email protected]>
+ * Copyright (C) 2012-2021 MATE Developers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -77,10 +78,7 @@ mate_panel_applet_factory_finalize (GObject *object)
factories = NULL;
}
- if (factory->factory_id) {
- g_free (factory->factory_id);
- factory->factory_id = NULL;
- }
+ g_clear_pointer (&factory->factory_id, g_free);
if (factory->applets) {
g_hash_table_unref (factory->applets);
@@ -177,7 +175,6 @@ set_applet_constructor_properties (GObject *applet,
}
}
-
static void
mate_panel_applet_factory_get_applet (MatePanelAppletFactory *factory,
GDBusConnection *connection,
@@ -272,7 +269,8 @@ static const gchar introspection_xml[] =
static const GDBusInterfaceVTable interface_vtable = {
method_call_cb,
NULL,
- NULL
+ NULL,
+ { 0 }
};
static GDBusNodeInfo *introspection_data = NULL;