From 71b20f46de8db44d6c6fcfa224cf76d5c7963071 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 21 Jun 2007 15:25:36 +0000 Subject: [PATCH] docstring fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@46590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_colour.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/src/_colour.i b/wxPython/src/_colour.i index c560386597..b70b05094a 100644 --- a/wxPython/src/_colour.i +++ b/wxPython/src/_colour.i @@ -35,7 +35,7 @@ Blue (RGB) 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, from a '#RRGGBB' colour hex value string, or from a 3 +colour name, from a '#RRGGBB' colour hex value string, or from a 3 or 4 integer tuple to a wx.Colour object when calling C++ methods that expect a wxColour. This means that the following are all equivallent:: @@ -59,7 +59,7 @@ public: DocCtorStr( wxColour(byte red=0, byte green=0, byte blue=0, byte alpha=wxALPHA_OPAQUE), - "Constructs a colour from red, green and blue values. + "Constructs a colour from red, green, blue and alpha values. :see: Alternate constructors `wx.NamedColour` and `wx.ColourRGB`. ", "");