From f9d3748bc06a96750199eecccafc267f22fc80a3 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Wed, 16 May 2001 21:20:50 +0000 Subject: [PATCH] corrections for Mac OS X Developer Tools git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10182 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/mac/statbmp.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/wx/mac/statbmp.h b/include/wx/mac/statbmp.h index 58e988df01..62291ce3ce 100644 --- a/include/wx/mac/statbmp.h +++ b/include/wx/mac/statbmp.h @@ -47,16 +47,16 @@ class WXDLLEXPORT wxStaticBitmap: public wxControl virtual void Command(wxCommandEvent& WXUNUSED(event)) {}; virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {}; - virtual void OnPaint( wxPaintEvent &event ) ; + virtual void OnPaint( wxPaintEvent &event ) ; void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); - inline wxBitmap& GetBitmap() const { return m_messageBitmap; } - const wxIcon& GetIcon() const { return (const wxIcon&) GetBitmap() ; } - void SetIcon(const wxIcon& icon) {SetBitmap( icon ) ; } + inline const wxBitmap& GetBitmap() const { return m_messageBitmap; } + const wxIcon& GetIcon() const { return (const wxIcon&) GetBitmap() ; } + void SetIcon(const wxIcon& icon) { SetBitmap( (const wxBitmap &)icon ) ; } // overriden base class virtuals virtual bool AcceptsFocus() const { return FALSE; } - wxSize DoGetBestSize() const ; + wxSize DoGetBestSize() const ; protected: wxBitmap m_messageBitmap; -- 2.47.2