]> git.saurik.com Git - wxWidgets.git/commitdiff
Small change
authorJulian Smart <julian@anthemion.co.uk>
Fri, 24 Jul 1998 20:45:26 +0000 (20:45 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 24 Jul 1998 20:45:26 +0000 (20:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/wxprop/src/prop.cpp

index 4bd8d72efe1103c7bc4782dac37c101460194bce..3b5b0367b835d0f3c367c9110db1637582a5bf41 100644 (file)
@@ -376,8 +376,11 @@ void wxPropertyValue::Copy(wxPropertyValue& copyFrom)
       (*this) = copyFrom.IntegerValuePtr();
       return ;
     case wxPropertyValueStringPtr:
-      (*this) = copyFrom.StringValuePtr();
+    {
+      char** s = copyFrom.StringValuePtr();
+      (*this) = s;
       return ;
+    }
       
     case wxPropertyValueList:
     {