]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/meta/convertible.h
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
[wxWidgets.git] / include / wx / meta / convertible.h
index d43fc2c74de5ac6277eb64087cbd2f70b4560ad5..459993782147c7426f968da016527eadce41297d 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     Test if types are convertible
 // Author:      Arne Steinarson
 // Created:     2008-01-10
-// RCS-ID:      $Id$
 // Copyright:   (c) 2008 Arne Steinarson
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -17,8 +16,8 @@
 template <class D, class B>
 struct wxConvertibleTo_SizeHelper
 {
-       static char Match(B* pb);
-       static int  Match(...);
+    static char Match(B* pb);
+    static int  Match(...);
 };
 
 // Helper to decide if an object of type D is convertible to type B (the test
@@ -26,8 +25,13 @@ struct wxConvertibleTo_SizeHelper
 template <class D, class B>
 struct wxConvertibleTo
 {
-    enum { value = sizeof(wxConvertibleTo_SizeHelper<D,B>::Match(static_cast<D*>(NULL)))==sizeof(char)
-       };
+    enum
+    {
+        value =
+            sizeof(wxConvertibleTo_SizeHelper<D,B>::Match(static_cast<D*>(NULL)))
+            ==
+            sizeof(char)
+    };
 };
 
 #endif // _WX_META_CONVERTIBLE_H_