summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2024-08-03 19:06:17 +0200
committerMatthias Melcher <github@matthiasm.com>2024-08-03 19:06:23 +0200
commit803ad5ace93ab67bd453c6e0fc4c19b501fd5f73 (patch)
tree41286b238203295443e587e123038cd6a4ed2a42 /FL
parent7d90a3b37381353cf2df4dfad720bbef7cd7931b (diff)
Fixes missing default argument in Fl_Fill_Dial constructor.
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Fill_Dial.H2
1 files changed, 1 insertions, 1 deletions
diff --git a/FL/Fl_Fill_Dial.H b/FL/Fl_Fill_Dial.H
index fc66cea62..3b6bf7fc5 100644
--- a/FL/Fl_Fill_Dial.H
+++ b/FL/Fl_Fill_Dial.H
@@ -26,7 +26,7 @@
class FL_EXPORT Fl_Fill_Dial : public Fl_Dial {
public:
/** Creates a filled dial, also setting its type to FL_FILL_DIAL. */
- Fl_Fill_Dial(int X,int Y,int W,int H, const char *L);
+ Fl_Fill_Dial(int X,int Y,int W,int H, const char *L = NULL);
};
#endif