From 71cbe687e30622f9db3e3108b3abcc2312472285 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 31 Jul 1999 21:56:42 +0000 Subject: [PATCH] compile warning fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3228 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/prop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/prop.cpp b/src/generic/prop.cpp index 30c510e874..44827dcf22 100644 --- a/src/generic/prop.cpp +++ b/src/generic/prop.cpp @@ -371,7 +371,7 @@ void wxPropertyValue::Copy(wxPropertyValue& copyFrom) case wxPropertyValueStringPtr: { wxChar** s = copyFrom.StringValuePtr(); - (*this) = s; + (*this) = s != 0; return ; }