From 9ddc9b0c6fbcacdb3fd7046155634314ef593818 Mon Sep 17 00:00:00 2001 From: APTX Date: Fri, 26 Apr 2013 18:03:17 +0200 Subject: [PATCH] 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. --- localmylist-management/renamesettingsdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.52.0