]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/meta/convertible.h
Implement GetSelectedHTML for the ie and gtk webkit backends and document.
[wxWidgets.git] / include / wx / meta / convertible.h
index d43fc2c74de5ac6277eb64087cbd2f70b4560ad5..1b46f7f21dc8d57bd1b13122c2a09e30638683b5 100644 (file)
@@ -17,8 +17,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 +26,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_