From 1ccafa83b2c783fdfe088af1ddf9a853e071cf5d Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 19 Mar 2025 14:44:16 +0100 Subject: Remove obsolete build option 'FLTK_OPTION_STD' This option is no longer needed since FLTK 1.5 always requires C++11. --- src/fl_ask.cxx | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/fl_ask.cxx') diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx index 14913e269..49486716a 100644 --- a/src/fl_ask.cxx +++ b/src/fl_ask.cxx @@ -346,9 +346,6 @@ const char *fl_input(int maxchar, const char *fmt, const char *defstr, ...) { } - -#if (FLTK_USE_STD) - /** Shows an input dialog displaying the \p fmt message with variable arguments. Like fl_input(), but this method has the additional argument \p maxchar @@ -412,7 +409,6 @@ std::string fl_input_str(int maxchar, const char *fmt, const char *defstr, ...) return (r == NULL) ? std::string("") : std::string(r); } -#endif // FLTK_USE_STD /** Shows an input dialog displaying the \p fmt message with variable arguments. @@ -460,7 +456,6 @@ const char *fl_password(int maxchar, const char *fmt, const char *defstr, ...) { return r; } -#if (FLTK_USE_STD) /** Shows an input dialog displaying the \p fmt message with variable arguments. @@ -510,8 +505,6 @@ std::string fl_password_str(int maxchar, const char *fmt, const char *defstr, .. return (r == NULL) ? std::string("") : std::string(r); } -#endif // FLTK_USE_STD - /** Sets the preferred position for the message box used in many common dialogs like fl_message(), fl_alert(), -- cgit v1.2.3