From: Vadim Zeitlin Date: Wed, 5 Jun 2002 23:13:34 +0000 (+0000) Subject: VC++ warning fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/36633c5c00d60bbcfffd9415c36f89579992b315 VC++ warning fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/univ/themes/metal.cpp b/src/univ/themes/metal.cpp index 9cc918b5bf..dc580faaf0 100644 --- a/src/univ/themes/metal.cpp +++ b/src/univ/themes/metal.cpp @@ -158,7 +158,7 @@ private: { if ( !m_win32Theme ) m_win32Theme = wxTheme::Create("win32"); - return m_win32Theme; + return m_win32Theme != NULL; } private: wxTheme *m_win32Theme;