Minimal changes needed to build/run wxPython on the 2.5 branch after
the merge. Still need to look for and apply most changes and new additions that have happened since the last merge. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22072 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -294,9 +294,16 @@ class wxColourDatabasePtr(wxObjectPtr):
|
||||
val = gdic.wxColourDatabase_FindColour(self, *_args, **_kwargs)
|
||||
if val: val = wxColourPtr(val)
|
||||
return val
|
||||
def FindColourNoAdd(self, *_args, **_kwargs):
|
||||
val = gdic.wxColourDatabase_FindColourNoAdd(self, *_args, **_kwargs)
|
||||
if val: val = wxColourPtr(val)
|
||||
return val
|
||||
def FindName(self, *_args, **_kwargs):
|
||||
val = gdic.wxColourDatabase_FindName(self, *_args, **_kwargs)
|
||||
return val
|
||||
def AddColour(self, *_args, **_kwargs):
|
||||
val = gdic.wxColourDatabase_AddColour(self, *_args, **_kwargs)
|
||||
return val
|
||||
def Append(self, *_args, **_kwargs):
|
||||
val = gdic.wxColourDatabase_Append(self, *_args, **_kwargs)
|
||||
return val
|
||||
|
Reference in New Issue
Block a user