fix miscellaneous Doxygen 1.6.1 warnings
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62958 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -40,7 +40,6 @@ public:
|
||||
*/
|
||||
wxChoice();
|
||||
|
||||
//@{
|
||||
/**
|
||||
Constructor, creating and showing a choice.
|
||||
|
||||
@@ -127,7 +126,6 @@ public:
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxChoiceNameStr );
|
||||
//@}
|
||||
|
||||
/**
|
||||
Destructor, destroying the choice item.
|
||||
|
@@ -9,8 +9,8 @@
|
||||
/**
|
||||
@class wxClientDataContainer
|
||||
|
||||
This class is a mixin that provides storage and management of "client
|
||||
data." This data can either be of type void - in which case the data
|
||||
This class is a mixin that provides storage and management of "client data".
|
||||
This data can either be of type void - in which case the data
|
||||
@e container does not take care of freeing the data again or it is of
|
||||
type wxClientData or its derivatives. In that case the container will free
|
||||
the memory itself later. Note that you @e must not assign both void data
|
||||
|
@@ -83,7 +83,6 @@ public:
|
||||
*/
|
||||
wxComboBox();
|
||||
|
||||
//@{
|
||||
/**
|
||||
Constructor, creating and showing a combobox.
|
||||
|
||||
@@ -174,7 +173,6 @@ public:
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxComboBoxNameStr);
|
||||
//@}
|
||||
|
||||
/**
|
||||
Destructor, destroying the combobox.
|
||||
|
@@ -784,7 +784,7 @@ class wxGridColumnHeaderRenderer : public wxGridHeaderLabelsRenderer
|
||||
|
||||
@since 2.9.1
|
||||
*/
|
||||
class wxGridRowHeaderRendererDefault : public wxGridRowHeaderRendererDefault
|
||||
class wxGridRowHeaderRendererDefault : public wxGridRowHeaderRenderer
|
||||
{
|
||||
public:
|
||||
/// Implement border drawing for the row labels.
|
||||
|
@@ -73,7 +73,7 @@ public:
|
||||
|
||||
/**
|
||||
Returns tag's name. The name is always in uppercase and it doesn't contain
|
||||
" or '/' characters. (So the name of \<FONT SIZE=+2\> tag is "FONT"
|
||||
" or '/' characters. (So the name of \<FONT SIZE=+2\> tag is "FONT"
|
||||
and name of \</table\> is "TABLE").
|
||||
*/
|
||||
wxString GetName() const;
|
||||
|
@@ -31,7 +31,7 @@
|
||||
(although this is the most common case) -- it can be any value which can
|
||||
be used to uniquely identify an item.
|
||||
|
||||
@library{core}
|
||||
@library{wxcore}
|
||||
@category{events}
|
||||
*/
|
||||
class wxMouseEventsManager : public wxEvtHandler
|
||||
|
@@ -68,7 +68,6 @@ public:
|
||||
*/
|
||||
wxOwnerDrawnComboBox();
|
||||
|
||||
//@{
|
||||
/**
|
||||
Constructor, creating and showing a owner-drawn combobox.
|
||||
|
||||
@@ -138,7 +137,6 @@ public:
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = "comboBox");
|
||||
//@}
|
||||
|
||||
/**
|
||||
Destructor, destroying the owner-drawn combobox.
|
||||
|
@@ -89,10 +89,15 @@ public:
|
||||
const wxSize& size = wxDefaultSize, long style = 0,
|
||||
const wxString& name = wxStaticTextNameStr);
|
||||
|
||||
// NB: when writing docs for the following function remember that Doxygen
|
||||
// will always expand HTML entities (e.g. ") and thus we need to
|
||||
// write e.g. "&lt;" to have in the output the "<" string.
|
||||
/**
|
||||
Escapes all the symbols of @a str that have a special meaning (<tt><>"'&</tt>) for
|
||||
Escapes all the symbols of @a str that have a special meaning (<tt><>"'&</tt>) for
|
||||
wxStaticText objects with the @c wxST_MARKUP style.
|
||||
Those symbols are replaced the corresponding entities (< > " ' &).
|
||||
|
||||
Those symbols are replaced the corresponding entities
|
||||
(&lt; &gt; &quot; &apos; &amp;).
|
||||
*/
|
||||
static wxString EscapeMarkup(const wxString& str);
|
||||
|
||||
|
@@ -20,6 +20,7 @@
|
||||
|
||||
Here is an example function using this class which inserts hard line breaks
|
||||
into a string of text at the positions where it would be wrapped:
|
||||
|
||||
@code
|
||||
wxString WrapText(wxWindow *win, const wxString& text, int widthMax)
|
||||
{
|
||||
@@ -53,7 +54,7 @@ wxString WrapText(wxWindow *win, const wxString& text, int widthMax)
|
||||
}
|
||||
@endcode
|
||||
|
||||
@library{none}
|
||||
@nolibrary
|
||||
@category{gdi}
|
||||
*/
|
||||
class wxTextWrapper
|
||||
|
@@ -28,8 +28,8 @@ enum wxStringTokenizerMode
|
||||
|
||||
/**
|
||||
In this mode, the empty tokens in the middle of the string will be returned,
|
||||
i.e. @c "a::b:" will be tokenized in three tokens @c 'a', " and @c 'b'. Notice
|
||||
that all trailing delimiters are ignored in this mode, not just the last one,
|
||||
i.e. @c "a::b:" will be tokenized in three tokens @c 'a', @c '' and @c 'b'.
|
||||
Notice that all trailing delimiters are ignored in this mode, not just the last one,
|
||||
i.e. a string @c "a::b::" would still result in the same set of tokens.
|
||||
*/
|
||||
wxTOKEN_RET_EMPTY,
|
||||
|
Reference in New Issue
Block a user