From: Václav Slavík Date: Sat, 5 Aug 2006 12:57:31 +0000 (+0000) Subject: reformatted DEFINE_STD_WXCOLOUR_CONSTRUCTORS definition to fit on standard terminal X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d9c2755704058b73567f30d28bd7df2fe5c4c591?ds=inline reformatted DEFINE_STD_WXCOLOUR_CONSTRUCTORS definition to fit on standard terminal git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40465 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/colour.h b/include/wx/colour.h index 15833968a4..df13b09baf 100644 --- a/include/wx/colour.h +++ b/include/wx/colour.h @@ -20,11 +20,11 @@ // this macro avoids to repeat these lines across all colour.h files, since // Set() is a virtual function and thus cannot be called by wxColourBase // constructors -#define DEFINE_STD_WXCOLOUR_CONSTRUCTORS \ - wxColour( unsigned char red, unsigned char green, unsigned char blue ) \ - { Set(red, green, blue); } \ - wxColour( unsigned long colRGB ) { Set(colRGB); } \ - wxColour(const wxString &colourName) { Set(colourName); } \ +#define DEFINE_STD_WXCOLOUR_CONSTRUCTORS \ + wxColour( unsigned char red, unsigned char green, unsigned char blue ) \ + { Set(red, green, blue); } \ + wxColour( unsigned long colRGB ) { Set(colRGB); } \ + wxColour(const wxString &colourName) { Set(colourName); } \ wxColour(const wxChar *colourName) { Set(colourName); }