]> git.saurik.com Git - wxWidgets.git/commitdiff
minor fixes to reduce number of Doxygen warnings
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Tue, 11 May 2010 19:44:16 +0000 (19:44 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Tue, 11 May 2010 19:44:16 +0000 (19:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64290 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/doxygen/mainpages/introduction.h
interface/wx/dcbuffer.h
interface/wx/debug.h
interface/wx/grid.h
interface/wx/toolbar.h

index 0db2ee14fad1a69f36b2cd389393064f780bcbbd..763ce481def8e5c01a79e602ea6377840170b3d0 100644 (file)
@@ -38,7 +38,7 @@ This manual contains a class reference and topic overviews.
 For a selection of wxWidgets tutorials, please see the documentation page
 on the wxWidgets web site: http://www.wxwidgets.org.
 
-Please note that in the following, ``MS Windows" often refers to all
+Please note that in the following, "MS Windows" often refers to all
 platforms related to Microsoft Windows, including 32-bit and 64-bit
 variants, unless otherwise stated. All trademarks are acknowledged.
 
index 55c61c9483f9afe8844c68306aae46a43e8b87c8..9a4628132de0aa79a29d1c7cd5a819cf0c2feb5d 100644 (file)
@@ -10,7 +10,7 @@
     @class wxBufferedDC
 
     This class provides a simple way to avoid flicker: when drawing on it,
-    everything is in fact first drawn on an in-memory buffer (a wxBitmap) and
+    everything is infact first drawn on an in-memory buffer (a wxBitmap) and
     then copied to the screen, using the associated wxDC, only once, when this
     object is destroyed. wxBufferedDC itself is typically associated with
     wxClientDC, if you want to use it in your @c EVT_PAINT handler, you should
@@ -48,7 +48,6 @@ public:
     */
     wxBufferedDC();
 
-    //@{
     /**
         Creates a buffer for the provided @a dc. Init() must not be called when
         using this constructor.
@@ -89,7 +88,6 @@ public:
     */
     wxBufferedDC(wxDC* dc, wxBitmap& buffer = wxNullBitmap,
                  int style = wxBUFFER_CLIENT_AREA);
-    //@}
 
     /**
         Copies everything drawn on the DC so far to the underlying DC
index 8803ff2546ad2d81a359c65527d43beb3b7fadf7..d805f21e52fb2457ffb65067680605b5afcbf888 100644 (file)
@@ -289,7 +289,7 @@ void wxDisableAsserts();
     Will always generate an assert error with specified message if this code is
     reached (in debug mode).
 
-    This macro is useful for marking unreachable" code areas, for example it
+    This macro is useful for marking "unreachable" code areas, for example it
     may be used in the "default:" branch of a switch statement if all possible
     cases are processed above.
 
index 4fe31735bce87aa20a308679973f943be94c2b2c..fb68f5dcc81d57986bb5a9d450b477e0e1056efd 100644 (file)
@@ -496,13 +496,21 @@ public:
             If allowOthers is @true, the user can type a string not in choices
             array.
     */
-    //@{
     wxGridCellChoiceEditor(size_t count = 0,
                            const wxString choices[] = NULL,
                            bool allowOthers = false);
+
+    /**
+        Choice cell renderer ctor.
+
+        @param choices
+            An array of strings from which the user can choose.
+        @param allowOthers
+            If allowOthers is @true, the user can type a string not in choices
+            array.
+    */
     wxGridCellChoiceEditor(const wxArrayString& choices,
                            bool allowOthers = false);
-    //@}
 
     /**
         Parameters string format is "item1[,item2[...,itemN]]"
index 5daf2418feacf59b66d31661c25296a7f498d7f8..90f2cab465dd1af33684a384ff306d1b62d6cb5f 100644 (file)
@@ -312,11 +312,6 @@ public:
             The bitmap used when the tool is disabled. If it is equal to
             ::wxNullBitmap (default), the disabled bitmap is automatically
             generated by greying the normal one.
-        @param shortHelpString
-            This string is used for the tools tooltip.
-        @param longHelpString
-            This string is shown in the statusbar (if any) of the parent frame
-            when the mouse pointer is inside the tool.
         @param kind
             May be ::wxITEM_NORMAL for a normal button (default), ::wxITEM_CHECK
             for a checkable tool (such tool stays pressed after it had been
@@ -325,6 +320,11 @@ public:
             whenever another button in the group is checked. ::wxITEM_DROPDOWN
             specifies that a drop-down menu button will appear next to the
             tool button (only GTK+ and MSW). Call SetDropdownMenu() afterwards.
+        @param shortHelpString
+            This string is used for the tools tooltip.
+        @param longHelpString
+            This string is shown in the statusbar (if any) of the parent frame
+            when the mouse pointer is inside the tool.
         @param clientData
             An optional pointer to client data which can be retrieved later
             using GetToolClientData().