From 4b962ba1e0ccef2592127382b0c5ed5ff4eb6eb8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 15 Jun 2008 01:18:46 +0000 Subject: [PATCH] fix overview links and various Doxygen errors (#9580) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54227 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/sizer.h | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/interface/sizer.h b/interface/sizer.h index 619bd2dcba..bba558dd4d 100644 --- a/interface/sizer.h +++ b/interface/sizer.h @@ -34,9 +34,9 @@ OS X Human Interface Guidelines. @library{wxcore} - @category{FIXME} + @category{winlayout} - @see wxSizer, @ref overview_sizeroverview "Sizer overview", + @see wxSizer, @ref overview_sizer "Sizer Overview", wxDialog::CreateButtonSizer */ class wxStdDialogButtonSizer : public wxBoxSizer @@ -48,8 +48,8 @@ public: wxStdDialogButtonSizer(); /** - Adds a button to the wxStdDialogButtonSizer. The button must have one of the - following identifiers: + Adds a button to the wxStdDialogButtonSizer. The @a button must have + one of the following identifiers: wxID_OK wxID_YES wxID_SAVE @@ -556,7 +556,7 @@ public: @library{wxcore} @category{winlayout} - @see wxSizer, @ref overview_sizeroverview "Sizer overview" + @see wxSizer, @ref overview_sizer "Sizer Overview" */ class wxFlexGridSizer : public wxGridSizer { @@ -625,7 +625,7 @@ public: Specifies whether the sizer should flexibly resize its columns, rows, or both. Argument @c direction can be @c wxVERTICAL, @c wxHORIZONTAL or @c wxBOTH (which is the default value). Any other value is ignored. See - @ref getflexibledrection() GetFlexibleDirection for the + @ref GetFlexibleDirection() GetFlexibleDirection for the explanation of these values. Note that this method does not trigger relayout. */ @@ -760,7 +760,7 @@ public: @library{wxcore} @category{winlayout} - @see @ref overview_sizeroverview "Sizer overview" + @see @ref overview_sizer "Sizer Overview" */ class wxSizer : public wxObject { @@ -1047,15 +1047,15 @@ public: /** Returns the list of the items in this sizer. The elements of type-safe - wxList @a wxSizerItemList are objects of type - @ref overview_wxsizeritem "wxSizerItem *". + wxList @a wxSizerItemList are pointers to objects of type + @ref wxSizerItem "wxSizerItem". */ wxSizerItemList& GetChildren(); /** Returns the list of the items in this sizer. The elements of type-safe - wxList @a wxSizerItemList are objects of type - @ref overview_wxsizeritem "wxSizerItem *". + wxList @a wxSizerItemList are pointers to objects of type + @ref wxSizerItem "wxSizerItem". */ const wxSizerItemList& GetChildren() const; @@ -1354,7 +1354,7 @@ public: /** Detaches the given @a oldwin from the sizer and - replaces it with the given @newwin. The detached + replaces it with the given @a newwin. The detached child window is @b not deleted (because windows are owned by their parent window, not the sizer). @@ -1371,7 +1371,7 @@ public: /** Detaches the given @a oldsz from the sizer and - replaces it with the given @newwin. The detached + replaces it with the given @a newsz. The detached child sizer is deleted. Use parameter @a recursive to search the given element recursively in subsizers. @@ -1387,7 +1387,7 @@ public: /** Detaches the given item at position @a index from the sizer and - replaces it with the given wxSizerItem @ newitem. + replaces it with the given wxSizerItem @a newitem. The detached child is deleted @b only if it is a sizer or a spacer (but not if it is a wxWindow because windows are owned by their @@ -1535,7 +1535,7 @@ public: @library{wxcore} @category{winlayout} - @see wxSizer, @ref overview_sizeroverview "Sizer overview" + @see wxSizer, @ref overview_sizer "Sizer Overview" */ class wxGridSizer : public wxSizer { @@ -1608,8 +1608,8 @@ public: @library{wxcore} @category{winlayout} - @see wxSizer, wxStaticBox, wxBoxSizer, @ref overview_sizeroverview "Sizer - overview" + @see wxSizer, wxStaticBox, wxBoxSizer, @ref overview_sizer + "Sizer Overview" */ class wxStaticBoxSizer : public wxBoxSizer { @@ -1643,13 +1643,13 @@ public: simple basic geometry, typically in a row or a column or several hierarchies of either. - For more information, please see @ref overview_boxsizerprogramming "Programming - with wxBoxSizer". + For more information, please see @ref overview_sizer_box + "Programming with wxBoxSizer". @library{wxcore} @category{winlayout} - @see wxSizer, @ref overview_sizeroverview "Sizer overview" + @see wxSizer, @ref overview_sizer "Sizers Overview" */ class wxBoxSizer : public wxSizer { -- 2.45.2