summaryrefslogtreecommitdiff
path: root/src/gui/core/panels.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/core/panels.h')
-rw-r--r--src/gui/core/panels.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/core/panels.h b/src/gui/core/panels.h
index 0c55417..477c1e0 100644
--- a/src/gui/core/panels.h
+++ b/src/gui/core/panels.h
@@ -44,7 +44,10 @@ void register_panel_item(GPanelItem *, GGenConfig *);
typedef bool (* handle_panel_item_fc) (GPanelItem *, void *);
/* Effectue le parcours de tous les panneaux chargés. */
-bool browse_all_item_panels(handle_panel_item_fc, void *);
+bool _browse_all_item_panels(bool, handle_panel_item_fc, void *);
+
+#define browse_all_item_panels(h, d) \
+ _browse_all_item_panels(false, h, d)
/* Recherche un panneau à partir de son nom court. */
GPanelItem *get_panel_item_by_name(const char *);