]> git.saurik.com Git - wxWidgets.git/commitdiff
reformatted DEFINE_STD_WXCOLOUR_CONSTRUCTORS definition to fit on standard terminal
authorVáclav Slavík <vslavik@fastmail.fm>
Sat, 5 Aug 2006 12:57:31 +0000 (12:57 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sat, 5 Aug 2006 12:57:31 +0000 (12:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40465 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/colour.h

index 15833968a46d03d6d1698c33223f408d91618e8a..df13b09bafcc3b76364e3124b6b9a5add69aa57c 100644 (file)
 // 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
 // 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); }
 
 
     wxColour(const wxChar *colourName) { Set(colourName); }