summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-10-22 23:10:01 +0200
committerMatthias Melcher <github@matthiasm.com>2023-10-22 23:10:06 +0200
commit6cc3eb32db192e5a0c2453cf0ea261e042dbf818 (patch)
tree747a064909e5285523cf02df041f11984632045c
parentbf62959f1f76a5bafd3566a802b49fc2138a4763 (diff)
Removes Fl_String from documentation as well.
-rw-r--r--FL/fl_callback_macros.H2
1 files changed, 1 insertions, 1 deletions
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);
}