summaryrefslogtreecommitdiff
path: root/src/fl_ask.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2008-12-07 14:48:11 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2008-12-07 14:48:11 +0000
commit8a6a945505ee7d3bd5f08f99f6b242e3a7098609 (patch)
tree7bef733ed672094f381f202feae08cf62f66e822 /src/fl_ask.cxx
parent609f51953354bb77cf8fdfdb9e5130d67e56f578 (diff)
Fixed typos and amended doxygen docs.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6558 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_ask.cxx')
-rw-r--r--src/fl_ask.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx
index f57462673..68f61f3a3 100644
--- a/src/fl_ask.cxx
+++ b/src/fl_ask.cxx
@@ -288,7 +288,7 @@ void fl_beep(int type) {
}
#endif // WIN32
}
-/** Shows an information message dialog box
+/** Shows an information message dialog box
\param[in] fmt can be used as an sprintf-like format and variables for the message text
*/
void fl_message(const char *fmt, ...) {
@@ -391,9 +391,10 @@ const char* fl_input(const char *fmt, const char *defstr, ...) {
return r;
}
-/** Shows an input dialog displaying the \a fmt message,
- like fl_input except the input text is not shown,
- '*' characters are displayed instead
+/** Shows an input dialog displaying the \a fmt message.
+
+ Like fl_input() except the input text is not shown,
+ '*' characters are displayed instead.
\param[in] fmt can be used as an sprintf-like format and variables for the message text
\param[in] defstr defines the default returned string if no text is entered
\return the user string input if OK was pushed, NULL if Cancel was pushed