diff options
author | lukefromdc <[email protected]> | 2023-08-23 18:31:17 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-08-24 21:19:41 +0200 |
commit | 42eed3794f5098797e704fc1a68f17f205af7f15 (patch) | |
tree | d34071bdd1430f962c3310b9a23de37d6d480de7 /sensors-applet/main.c | |
parent | 50207d611f25070fe307c0b670886b293379e088 (diff) | |
download | mate-sensors-applet-42eed3794f5098797e704fc1a68f17f205af7f15.tar.bz2 mate-sensors-applet-42eed3794f5098797e704fc1a68f17f205af7f15.tar.xz |
Allow building in or out of process
Diffstat (limited to 'sensors-applet/main.c')
-rw-r--r-- | sensors-applet/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sensors-applet/main.c b/sensors-applet/main.c index ce1ea6e..3d984ab 100644 --- a/sensors-applet/main.c +++ b/sensors-applet/main.c @@ -42,8 +42,8 @@ static gboolean sensors_applet_fill(MatePanelApplet *applet, return retval; } -MATE_PANEL_APPLET_IN_PROCESS_FACTORY ("SensorsAppletFactory", - PANEL_TYPE_APPLET, - "SensorsApplet", - sensors_applet_fill, - NULL); +PANEL_APPLET_FACTORY ("SensorsAppletFactory", + PANEL_TYPE_APPLET, + "SensorsApplet", + sensors_applet_fill, + NULL); |