From c605b871f0df083d8bd6748b133b19e6b47b1f3f Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Thu, 17 Feb 2005 03:20:16 +0000 Subject: [PATCH] Added empty methods for wxIcon functions to match the API on other platforms. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/icon.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/mac/carbon/icon.cpp b/src/mac/carbon/icon.cpp index 796a5c8cde..27cc3149d2 100644 --- a/src/mac/carbon/icon.cpp +++ b/src/mac/carbon/icon.cpp @@ -83,6 +83,22 @@ int wxIcon::GetHeight() const return M_ICONDATA->GetHeight(); } +int wxIcon::GetDepth() const{ + return 32; +} + +void wxIcon::SetDepth(int depth){ + +} + +void wxIcon::SetWidth(int width){ + +} + +void wxIcon::SetHeight(int height){ + +} + bool wxIcon::Ok() const { return m_refData != NULL ; -- 2.50.0