]> git.saurik.com Git - wxWidgets.git/commitdiff
removed redundant wxClassName:: prefix
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 15 Nov 2008 11:49:24 +0000 (11:49 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 15 Nov 2008 11:49:24 +0000 (11:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56786 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/cmndata.h
interface/wx/xrc/xmlres.h

index bdc7f4c421189770a12115bdabc15d6db3839991..4fd908859ebb86dbc31ebb79b0f0fe6ac4ec57fa 100644 (file)
@@ -424,14 +424,21 @@ public:
     void SetCustomColour(int i, const wxColour& colour);
 
     /**
-        Assignment operator for the colour data.
+        Converts the colours saved in this class in a string form, separing
+        the various colours with a comma.
     */
-    wxColourData& operator =(const wxColourData& data);
+    wxString ToString() const;
 
+    /**
+        Decodes the given string, which should be in the same format returned
+        by ToString(), and sets the internal colours.
+    */
+    bool FromString(const wxString& str);
 
-    /** @todo document these */
-    wxString wxColourData::ToString() const;
-    bool wxColourData::FromString(const wxString& str);
+    /**
+        Assignment operator for the colour data.
+    */
+    wxColourData& operator =(const wxColourData& data);
 };
 
 
index 93c10b126a39420d61c24af26f8542606ff80463..14d9df782ebe787023dbd79521fcbeb3166075bc 100644 (file)
@@ -120,7 +120,7 @@ public:
 
         @since 2.9.0
      */
-    static wxString wxXmlResource::FindXRCIDById(int numId);
+    static wxString FindXRCIDById(int numId);
 
     /**
         Gets the global resources object or creates one if none exists.