From: APTX Date: Fri, 26 Apr 2013 16:03:17 +0000 (+0200) Subject: Use single quotes for values in theInput field. X-Git-Url: https://gitweb.aptx.org/?a=commitdiff_plain;h=9ddc9b0c6fbcacdb3fd7046155634314ef593818;p=localmylist.git Use single quotes for values in theInput field. Some titles contain double quotes while single quotes are already replaced by `. The output field does not really need this change as it is not parsed. --- diff --git a/localmylist-management/renamesettingsdialog.cpp b/localmylist-management/renamesettingsdialog.cpp index 7723bb2..498ccd6 100644 --- a/localmylist-management/renamesettingsdialog.cpp +++ b/localmylist-management/renamesettingsdialog.cpp @@ -181,7 +181,7 @@ void RenameSettingsDialog::setupEnvForFile(int fid) QString s; for (RenameParser::Environment::const_iterator i = env.constBegin(); i != env.constEnd(); ++i) { - s += i.key() + " := \"" + i.value() + "\"\n"; + s += i.key() + " := '" + i.value() + "'\n"; } ui->input->setText(s); }