X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f68586e51b20dccee3fd5645aeaca7cc8ff298c2..625cb8c0b1ac12f26265cae2c69d7f510de0edb1:/src/gtk/statbmp.cpp diff --git a/src/gtk/statbmp.cpp b/src/gtk/statbmp.cpp index e86af74122..392fa2fa4c 100644 --- a/src/gtk/statbmp.cpp +++ b/src/gtk/statbmp.cpp @@ -11,10 +11,12 @@ #pragma implementation "statbmp.h" #endif -#include "wx/statbmp.h" +#include "wx/defs.h" #if wxUSE_STATBMP +#include "wx/statbmp.h" + #include "gdk/gdk.h" #include "gtk/gtk.h" @@ -74,7 +76,7 @@ bool wxStaticBitmap::Create( wxWindow *parent, wxWindowID id, const wxBitmap &bi mask = m_bitmap.GetMask()->GetBitmap(); m_widget = gtk_pixmap_new( m_bitmap.GetPixmap(), mask ); - SetSizeOrDefault( size ); + SetBestSize( size ); } else { @@ -112,16 +114,9 @@ void wxStaticBitmap::SetBitmap( const wxBitmap &bitmap ) gtk_pixmap_set( GTK_PIXMAP(m_widget), m_bitmap.GetPixmap(), mask ); } - SetSizeOrDefault(); + SetBestSize(wxSize(bitmap.GetWidth(), bitmap.GetHeight())); } } -wxSize wxStaticBitmap::DoGetBestSize() const -{ - if ( m_bitmap.Ok() ) - return wxSize(m_bitmap.GetWidth(), m_bitmap.GetHeight()); - else - return wxSize(16, 16); // completely arbitrary -} +#endif // wxUSE_STATBMP -#endif