SWIGged updates for wxMac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-03-19 05:05:21 +00:00
parent 9b07c5a436
commit 37b68131d0
2 changed files with 4 additions and 18 deletions

View File

@@ -573,7 +573,7 @@ class wxDateTimePtr :
return self.__sub__DT(other)
if isinstance(other, wxTimeSpanPtr):
return self.__sub__TS(other)
if isinstnace(other, wxDateSpanPtr):
if isinstance(other, wxDateSpanPtr):
return self.__sub__DS(other)
raise TypeError, 'Invalid r.h.s. type for __sub__'