summaryrefslogtreecommitdiff
path: root/src/fl_ask.cxx
diff options
context:
space:
mode:
authorFabien Costantini <fabien@onepost.net>2009-03-24 01:40:44 +0000
committerFabien Costantini <fabien@onepost.net>2009-03-24 01:40:44 +0000
commit15489bda1b2c9a4db82965a85634674d5d7f2dbe (patch)
tree0bd04bb1d127ad7aca0d09141993c32a20c2eb10 /src/fl_ask.cxx
parent2fb4b11e9140cbf7bc19c566c71cdb935296b4e3 (diff)
Major documentation update including: now html doc API is sorted, navigation problems/side effects fixed, html tags replaced by proper doxygen commands, parameters command switched from a to p. Includes a pdf update.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6716 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_ask.cxx')
-rw-r--r--src/fl_ask.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx
index 9429250e1..6dd1b7a4c 100644
--- a/src/fl_ask.cxx
+++ b/src/fl_ask.cxx
@@ -317,7 +317,7 @@ void fl_alert(const char *fmt, ...) {
va_end(ap);
iconlabel = "?";
}
-/** Shows a dialog displaying the \a fmt message,
+/** Shows a dialog displaying the \p fmt message,
this dialog features 2 yes/no buttons
\param[in] fmt can be used as an sprintf-like format and variables for the message text
\retval 0 if the no button is selected
@@ -335,15 +335,15 @@ int fl_ask(const char *fmt, ...) {
return r;
}
-/** Shows a dialog displaying the \a fmt message,
+/** Shows a dialog displaying the \p fmt message,
this dialog features up to 3 customizable choice buttons
\param[in] fmt can be used as an sprintf-like format and variables for the message text
\param[in] b0 text label of button 0
\param[in] b1 text label of button 1
\param[in] b2 text label of button 2
- \retval 0 if the first button with \a b0 text is selected
- \retval 1 if the second button with \a b1 text is selected
- \retval 2 if the third button with \a b2 text is selected
+ \retval 0 if the first button with \p b0 text is selected
+ \retval 1 if the second button with \p b1 text is selected
+ \retval 2 if the third button with \p b2 text is selected
*/
int fl_choice(const char*fmt,const char *b0,const char *b1,const char *b2,...){
va_list ap;
@@ -376,7 +376,7 @@ static const char* input_innards(const char* fmt, va_list ap,
return r ? input->value() : 0;
}
-/** Shows an input dialog displaying the \a fmt message
+/** Shows an input dialog displaying the \p fmt message
\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
@@ -391,7 +391,7 @@ const char* fl_input(const char *fmt, const char *defstr, ...) {
return r;
}
-/** Shows an input dialog displaying the \a fmt message.
+/** Shows an input dialog displaying the \p fmt message.
Like fl_input() except the input text is not shown,
'*' characters are displayed instead.