X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/322913cef36b156a4a9722ce6a68845e3219e615..42f8298f6f42d5d63bb3caf65682b7d9d9f8b702:/wxPython/src/_palette.i?ds=inline diff --git a/wxPython/src/_palette.i b/wxPython/src/_palette.i index e2fdbe4b69..1ce21e1b3c 100644 --- a/wxPython/src/_palette.i +++ b/wxPython/src/_palette.i @@ -19,6 +19,8 @@ //--------------------------------------------------------------------------- +MustHaveApp(wxPalette); + class wxPalette : public wxGDIObject { public: wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); @@ -28,8 +30,9 @@ public: DocDeclA( bool, GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT), - "GetRGB(int pixel) -> (R,G,B)"); + "GetRGB(self, int pixel) -> (R,G,B)"); + int GetColoursCount() const; bool Ok(); %pythoncode { def __nonzero__(self): return self.Ok() }