]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/widgets/statbmp.cpp
eliminate possibility of configure enabling gnomeprint with GTK3
[wxWidgets.git] / samples / widgets / statbmp.cpp
index 5305c650486a1b810639e3a3966444ee20355f97..6449d23ef966e0aa4558a6f138804f519fd31bd5 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     2008-06-19
 // Id:          $Id$
 // Copyright:   (c) 2008 Marcin Wojdyr
-// License:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -115,15 +115,14 @@ void StatBmpWidgetsPage::CreateContent()
 
 void StatBmpWidgetsPage::RecreateWidget()
 {
-    delete m_statbmp;
-    m_statbmp = NULL;
+    wxDELETE(m_statbmp);
 
     wxString filepath = m_filepicker->GetPath();
     if ( filepath.empty() )
         return;
 
     wxImage image(filepath);
-    if (! image.Ok() )
+    if (! image.IsOk() )
     {
         wxLogMessage("Reading image from file '%s' failed.", filepath.c_str());
         return;