]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/palette.h
Replaced @returns with @return for more standard command use and compatibility.
[wxWidgets.git] / interface / palette.h
index 6a5663e1691b2c40894f58bcc6698860b9bf0e9f..f1a9a4bdc09bb585db2e3411180636ff0767f3c1 100644 (file)
@@ -39,12 +39,14 @@ public:
         Default constructor.
     */
     wxPalette();
+
     /**
         Copy constructor, uses @ref overview_refcount.
     */
     wxPalette(const wxPalette& palette);
+
     /**
-        Creates a palette from arrays of size @e n, one for each red, blue or
+        Creates a palette from arrays of size @a n, one for each red, blue or
         green component.
 
         @param palette
@@ -72,7 +74,7 @@ public:
     ~wxPalette();
 
     /**
-        Creates a palette from arrays of size @e n, one for each red, blue or
+        Creates a palette from arrays of size @a n, one for each red, blue or
         green component.
 
         @param n
@@ -84,7 +86,7 @@ public:
         @param blue
             An array of blue values.
 
-        @returns @true if the creation was successful, @false otherwise.
+        @return @true if the creation was successful, @false otherwise.
 
         @see wxPalette()
     */
@@ -107,7 +109,7 @@ public:
         @param blue
             Blue value.
 
-        @returns The nearest palette index or @c wxNOT_FOUND for unexpected errors.
+        @return The nearest palette index or @c wxNOT_FOUND for unexpected errors.
 
         @see GetRGB()
     */
@@ -126,7 +128,7 @@ public:
         @param blue
             Receives the blue value.
 
-        @returns @true if the operation was successful.
+        @return @true if the operation was successful.
 
         @see GetPixel()
     */
@@ -147,7 +149,7 @@ public:
 
 
 /**
-    FIXME
+    An empty palette.
 */
 wxPalette wxNullPalette;