summaryrefslogtreecommitdiff
path: root/FL/fl_ask.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/fl_ask.H')
-rw-r--r--FL/fl_ask.H20
1 files changed, 0 insertions, 20 deletions
diff --git a/FL/fl_ask.H b/FL/fl_ask.H
index d596e9347..9ff169521 100644
--- a/FL/fl_ask.H
+++ b/FL/fl_ask.H
@@ -24,8 +24,6 @@
#include <FL/Enumerations.H>
#include <FL/fl_attr.h>
-#include <string>
-
// Note to FLTK developers: fl_ask() had been deprecated since FLTK 1.1.7
// (released Jan 17, 2006 !) but was still available in FLTK 1.4.x.
// FLTK 1.5 disables it by using an *undocumented* preprocessor macro.
@@ -95,24 +93,6 @@ FL_EXPORT const char *fl_input(int maxchar, const char *label, const char *deflt
FL_EXPORT const char *fl_password(int maxchar, const char *label, const char *deflt = 0, ...)
__fl_attr((__format__(__printf__, 2, 4)));
-// since FLTK 1.4.0 -- optional
-// since FLTK 1.5.0 -- always
-
-// - fl_input_str() with limited input size, returns std::string
-// - fl_password_str() with limited input size, returns std::string
-
-FL_EXPORT std::string fl_input_str(int maxchar, const char *label, const char *deflt = 0, ...)
- __fl_attr((__format__(__printf__, 2, 4)));
-
-FL_EXPORT std::string fl_input_str(int &ret, int maxchar, const char *label, const char *deflt = 0, ...)
- __fl_attr((__format__(__printf__, 3, 5)));
-
-FL_EXPORT std::string fl_password_str(int maxchar, const char *label, const char *deflt = 0, ...)
- __fl_attr((__format__(__printf__, 2, 4)));
-
-FL_EXPORT std::string fl_password_str(int &ret, int maxchar, const char *label, const char *deflt = 0, ...)
- __fl_attr((__format__(__printf__, 3, 5)));
-
FL_EXPORT Fl_Widget *fl_message_icon();
extern FL_EXPORT Fl_Font fl_message_font_;
extern FL_EXPORT Fl_Fontsize fl_message_size_;