removed @NULL,@true,@false tags from the function prototypes; fixed * and & displacing in the prototypes; changed @param as discussed on wx-dev; use @see instead of @sa; better indentation for @returns,@remarks,@see paragraphs; other misc fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-09 12:33:59 +00:00
parent 0aaf0255e4
commit 4cc4bfafe5
256 changed files with 8880 additions and 10701 deletions

View File

@@ -8,14 +8,12 @@
/**
Shows a dialog asking the user for numeric input. The dialogs title is set to
@e caption, it contains a (possibly) multiline @e message above the
single line @e prompt and the zone for entering the number.
The number entered must be in the range @e min..@e max (both of which
should be positive) and @e value is the initial value of it. If the user
@e caption, it contains a (possibly) multiline @a message above the
single line @a prompt and the zone for entering the number.
The number entered must be in the range @e min..@a max (both of which
should be positive) and @a value is the initial value of it. If the user
enters an invalid value or cancels the dialog, the function will return -1.
Dialog is centered on its @e parent unless an explicit position is given in
Dialog is centered on its @a parent unless an explicit position is given in
@e pos.
*/
long wxGetNumberFromUser(const wxString& message,
@@ -24,7 +22,7 @@ long wxGetNumberFromUser(const wxString& message,
long value,
long min = 0,
long max = 100,
wxWindow * parent = @NULL,
wxWindow* parent = NULL,
const wxPoint& pos = wxDefaultPosition);