From: robertlipe Date: Thu, 10 Apr 2014 03:47:15 +0000 (+0000) Subject: No cleanup goes unpunished. Revert ozi changes. X-Git-Tag: archive/raspbian/1.10.0+ds-2+rpi1~1^2~12^2~11^2~160 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f08390b10e65e31dba1c70cf16fae4a6ea15d23e;p=gpsbabel.git No cleanup goes unpunished. Revert ozi changes. --- diff --git a/gpsbabel/ozi.cc b/gpsbabel/ozi.cc index a98e0442a..cb30d0c6e 100644 --- a/gpsbabel/ozi.cc +++ b/gpsbabel/ozi.cc @@ -649,7 +649,7 @@ ozi_parse_routepoint(int field, char* str, Waypoint* wpt_tmp) break; case 4: /* waypoint name */ - wpt_tmp->shortname = csv_stringclean(str, ","); + wpt_tmp->shortname = csv_stringclean(str, QString(",")); break; case 5: /* latitude */ @@ -680,7 +680,7 @@ ozi_parse_routepoint(int field, char* str, Waypoint* wpt_tmp) break; case 13: /* description */ - wpt_tmp->description = csv_stringclean(str, ","); + wpt_tmp->description = csv_stringclean(str, QString(",")); break; default: break;