diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-02-20 21:37:10 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-02-20 21:37:10 (GMT) |
commit | 0bec2b96a14da29a680aafe54895fd9cfb3bcf09 (patch) | |
tree | ba2dd91ed51cd0fb0eb801439271028fbf1c6f81 /src/gui/panel.c | |
parent | f58a0e1138a3a3b8a4cfa237f1fe75a24ea8e2ba (diff) |
Create a GTK widget to launch panels.
Diffstat (limited to 'src/gui/panel.c')
-rw-r--r-- | src/gui/panel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/panel.c b/src/gui/panel.c index b361153..a704e63 100644 --- a/src/gui/panel.c +++ b/src/gui/panel.c @@ -184,9 +184,9 @@ PanelItemPersonality g_panel_item_get_personality(const GPanelItem *item) * * ******************************************************************************/ -GtkWidget *g_panel_item_get_launcher(GPanelItem *item) +GtkPanelLauncher *g_panel_item_get_launcher(GPanelItem *item) { - GtkWidget *result; /* Composant à retourner */ + GtkPanelLauncher *result; /* Composant à retourner */ GPanelItemClass *class; /* Classe à actionner */ if (item->launcher == NULL) |