Add wxIcon::GetSize() to wxIcon in wxOSX.
This fixes the compilation errors under OS X after r65884 due to the lack of this method there. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c5d7b7d20b
commit
9b307a69b3
@ -48,6 +48,8 @@ public:
|
||||
int GetWidth() const;
|
||||
int GetHeight() const;
|
||||
|
||||
wxSize GetSize() const { return wxSize(GetWidth(), GetHeight()); }
|
||||
|
||||
WX_NSImage GetNSImage() const;
|
||||
bool CreateFromXpm(const char* const* bits);
|
||||
|
||||
|
@ -50,6 +50,8 @@ public:
|
||||
void SetDepth(int d);
|
||||
void SetOk(bool isOk);
|
||||
|
||||
wxSize GetSize() const { return wxSize(GetWidth(), GetHeight()); }
|
||||
|
||||
WXHICON GetHICON() const;
|
||||
|
||||
protected:
|
||||
|
Loading…
Reference in New Issue
Block a user