Small change

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-07-24 20:45:26 +00:00
parent 03f68f123b
commit cc79e53c16

View File

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