From 36633c5c00d60bbcfffd9415c36f89579992b315 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 5 Jun 2002 23:13:34 +0000 Subject: [PATCH] VC++ warning fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/univ/themes/metal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.45.2