summaryrefslogtreecommitdiff
path: root/src/fl_ask.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2025-03-19 14:44:16 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2025-03-19 14:44:16 +0100
commit1ccafa83b2c783fdfe088af1ddf9a853e071cf5d (patch)
tree7b4c292888807b02448ff5341208821e5c2a2eed /src/fl_ask.cxx
parent4b07ab391ac77e2996e61646a258064bb1cadfeb (diff)
Remove obsolete build option 'FLTK_OPTION_STD'
This option is no longer needed since FLTK 1.5 always requires C++11.
Diffstat (limited to 'src/fl_ask.cxx')
-rw-r--r--src/fl_ask.cxx7
1 files changed, 0 insertions, 7 deletions
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(),