blob: 6ec3788a9553536c7ce95bbf95b60459cbbeba86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <panel-applet.h>
static gboolean applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data);
/*************
* main
* ***********/
PANEL_APPLET_BONOBO_FACTORY ("OAFIID:GNOME_IndicatorApplet_Factory",
PANEL_TYPE_APPLET,
"indicator-applet", "0",
applet_fill_cb, NULL);
/*************
* init function
* ***********/
static gboolean
applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data)
{
return TRUE;
}
|