]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/ctrlsub.h
fix another logical/physical coords confusion and update the comment to help with...
[wxWidgets.git] / include / wx / ctrlsub.h
index 6cdbee1a1f538789b0f3b344ffae3c22586676fd..109369b4890740bdc112ec3fb56b437d843e4cd2 100644 (file)
@@ -133,7 +133,7 @@ private:
         wxASSERT_MSG( GetClientDataType() != wxClientData_Void,
                       _T("can't mix different types of client data") );
 
-        return AppendItems(items, wx_reinterpret_cast(void **, clientData),
+        return AppendItems(items, reinterpret_cast<void **>(clientData),
                            wxClientData_Object);
     }
 
@@ -180,7 +180,7 @@ private:
                       _T("can't mix different types of client data") );
 
         return InsertItems(items, pos,
-                           wx_reinterpret_cast(void **, clientData),
+                           reinterpret_cast<void **>(clientData),
                            wxClientData_Object);
     }