]> git.saurik.com Git - wxWidgets.git/commitdiff
docstring tweak
authorRobin Dunn <robin@alldunn.com>
Wed, 14 Apr 2004 06:35:47 +0000 (06:35 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 14 Apr 2004 06:35:47 +0000 (06:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_colour.i

index 85a33d9daf1a8feaf716653ee4800dcd231e8350..245eed2067362ca13aeecf1bfeb15baea0ad5bba 100644 (file)
@@ -23,13 +23,13 @@ intensity values, and is used to determine drawing colours, window colours,
 etc.  Valid RGB values are in the range 0 to 255.
 
 In wxPython there are typemaps that will automatically convert from a colour
-name, or from a \"#RRGGBB\" colour hex value string to a wx.Colour object when
+name, or from a '#RRGGBB' colour hex value string to a wx.Colour object when
 calling C++ methods that expect a wxColour.  This means that the following are
 all equivallent:
 
     win.SetBackgroundColour(wxColour(0,0,255))
-    win.SetBackgroundColour(\"BLUE\")
-    win.SetBackgroundColour(\"#0000FF\")
+    win.SetBackgroundColour('BLUE')
+    win.SetBackgroundColour('#0000FF')
 
 You can retrieve the various current system colour settings with
 wx.SystemSettings.GetColour.");