Correcting a tooltip related to the CPB path field + bugfix of an unwanted double quote in the CPB command line (see issue 2111)

This commit is contained in:
Hombre
2013-12-10 06:32:48 +01:00
parent a334dfc8b5
commit 2d2074430b
3 changed files with 3 additions and 3 deletions

View File

@@ -230,7 +230,7 @@ rtengine::procparams::ProcParams* Thumbnail::createProcParamsForUpdate(bool retu
}
// For the filename etc. do NOT use streams, since they are not UTF8 safe
Glib::ustring cmdLine = options.CPBPath + Glib::ustring(" \"") + tmpFileName + Glib::ustring("\" \"");
Glib::ustring cmdLine = options.CPBPath + Glib::ustring(" \"") + tmpFileName + Glib::ustring("\"");
if (options.rtSettings.verbose)
printf("Custom profile builder's command line: %s\n", Glib::ustring(cmdLine).c_str());