]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/palette.h
Corrected library association
[wxWidgets.git] / interface / wx / palette.h
index 1ebae98ffb593c520721eb47e3f89d4236a8af18..1884f01f161656caecd096aa3f43182b1193a8c7 100644 (file)
@@ -41,6 +41,9 @@ public:
 
     /**
         Copy constructor, uses @ref overview_refcount.
+
+        @param palette
+            A reference to the palette to copy.
     */
     wxPalette(const wxPalette& palette);
 
@@ -48,8 +51,6 @@ public:
         Creates a palette from arrays of size @a n, one for each red, blue or
         green component.
 
-        @param palette
-            A pointer or reference to the palette to copy.
         @param n
             The number of indices in the palette.
         @param red
@@ -70,7 +71,7 @@ public:
 
         @see @ref overview_refcount_destruct "reference-counted object destruction"
     */
-    ~wxPalette();
+    virtual ~wxPalette();
 
     /**
         Creates a palette from arrays of size @a n, one for each red, blue or
@@ -96,7 +97,7 @@ public:
     /**
         Returns number of entries in palette.
     */
-    int GetColoursCount() const;
+    virtual int GetColoursCount() const;
 
     /**
         Returns a pixel value (index into the palette) for the given RGB values.
@@ -138,7 +139,7 @@ public:
     /**
         Returns @true if palette data is present.
     */
-    bool IsOk() const;
+    virtual bool IsOk() const;
 
     /**
         Assignment operator, using @ref overview_refcount.