--- src/ui/dlgProperty.cpp.orig Wed Jan 28 09:58:45 2004 +++ src/ui/dlgProperty.cpp Wed Jan 28 09:59:14 2004 @@ -956,7 +956,7 @@ str = str.Mid(1, str.Length()-2); wxString name=str.BeforeLast('='); - wxString value=; + wxString value; if (connection->BackendMinimumVersion(7, 4)) value=str.Mid(name.Length()+1).BeforeLast('/'); --- src/utils/misc.cpp.orig Wed Jan 28 09:59:31 2004 +++ src/utils/misc.cpp Wed Jan 28 10:03:07 2004 @@ -180,10 +180,12 @@ double StrToDouble(const wxString& value) { wxCharBuffer buf = value.ToAscii(); +/* Hmm.. + * It doesn't exist in my environment.? * char *p=strchr(buf, '.'); if (p) *p = localeconv()->decimal_point[0]; - +*/ return strtod(buf, 0); }