X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2996bcde9c1b96e2b8659a6eaf7201b56085abbb..284b4c8866ab36694b6ec2a308690bba4db4fed2:/src/generic/prop.cpp diff --git a/src/generic/prop.cpp b/src/generic/prop.cpp index 537588ba18..3aa479d8e4 100644 --- a/src/generic/prop.cpp +++ b/src/generic/prop.cpp @@ -369,12 +369,20 @@ void wxPropertyValue::Copy(wxPropertyValue& copyFrom) case wxPropertyValueStringPtr: { wxChar** s = copyFrom.StringValuePtr(); + +#if 0 // what is this? are you trying to assign a bool or a string? VA can't figure it out.. #if defined(__VISAGECPP__) || defined( __VISUALC__ ) (*this) = s; #else (*this) = s != 0; #endif +#endif // if 0 + + // TODO: check if this is right. MB + // + (*this) = s; + return ; }