]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/my_typemaps.i
typos fixed
[wxWidgets.git] / wxPython / src / my_typemaps.i
index 754704242bb402837526a964ab405abdef084cff..b130f580be3a9347faa8cb965c8d666d24142a23 100644 (file)
 
 //---------------------------------------------------------------------------
 
-%typemap(out) bool "$result = $1 ? Py_True : Py_False; Py_INCREF($result);"
-
+%typemap(out) bool {
+    $result = $1 ? Py_True : Py_False; Py_INCREF($result);
+}
 
 
 //---------------------------------------------------------------------------