do not use @b when referencing to functions; use final () to enable doxygen autolink

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57580 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-12-27 10:20:33 +00:00
parent f62c55815f
commit e5794f50e7

View File

@@ -674,7 +674,7 @@ public:
wxWindow* parent = NULL); wxWindow* parent = NULL);
/** /**
Find a window by its name (as given in a window constructor or @b Create Find a window by its name (as given in a window constructor or Create()
function call). function call).
If @a parent is @NULL, the search will start from all top-level frames If @a parent is @NULL, the search will start from all top-level frames
@@ -1278,11 +1278,14 @@ public:
*/ */
virtual wxSize GetWindowBorderSize() const; virtual wxSize GetWindowBorderSize() const;
//@{
/** /**
Gets the window style that was passed to the constructor or @b Create Gets the window style that was passed to the constructor or Create()
method. @b GetWindowStyle() is another name for the same function. method. GetWindowStyle() is another name for the same function.
*/ */
virtual long GetWindowStyleFlag() const; virtual long GetWindowStyleFlag() const;
long GetWindowStyle() const;
//@}
/** /**
Returns the value previously passed to SetWindowVariant(). Returns the value previously passed to SetWindowVariant().
@@ -2553,11 +2556,7 @@ public:
void SetVirtualSize(const wxSize& size); void SetVirtualSize(const wxSize& size);
//@} //@}
/** //@{
Identical to SetWindowStyleFlag().
*/
void SetWindowStyle(long style);
/** /**
Sets the style of the window. Please note that some styles cannot be changed Sets the style of the window. Please note that some styles cannot be changed
after the window creation and that Refresh() might need to be be called after the window creation and that Refresh() might need to be be called
@@ -2568,6 +2567,8 @@ public:
@see GetWindowStyleFlag() @see GetWindowStyleFlag()
*/ */
virtual void SetWindowStyleFlag(long style); virtual void SetWindowStyleFlag(long style);
void SetWindowStyle(long style);
//@}
/** /**
This function can be called under all platforms but only does anything under This function can be called under all platforms but only does anything under