From 6cc3eb32db192e5a0c2453cf0ea261e042dbf818 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 22 Oct 2023 23:10:01 +0200 Subject: [PATCH] Removes Fl_String from documentation as well. --- FL/fl_callback_macros.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FL/fl_callback_macros.H b/FL/fl_callback_macros.H index 185d05ec6..b1c2a349d 100644 --- a/FL/fl_callback_macros.H +++ b/FL/fl_callback_macros.H @@ -153,7 +153,7 @@ ... Fl_Button *btn = new Fl_Button(10, 10, 100, 20, "Test"); FL_INLINE_CALLBACK_1(btn, - Fl_String, name, btn->label(), + const char *, name, btn->label(), { fl_message("Greetings from the %s button", name); }