|
|
|
@ -61,7 +61,7 @@ void CSVDoc::AdjusterWidget::setName (const QString& name, bool addon)
|
|
|
|
|
if (path.parent_path().string()==mLocalData.string())
|
|
|
|
|
{
|
|
|
|
|
// path already points to the local data directory
|
|
|
|
|
message = QString::fromUtf8 (("Will be saved as: " + path.native()).c_str());
|
|
|
|
|
message = QString::fromUtf8 (("Will be saved as: " + path.string()).c_str());
|
|
|
|
|
mResultPath = path;
|
|
|
|
|
mValid = true;
|
|
|
|
|
}
|
|
|
|
@ -70,7 +70,7 @@ void CSVDoc::AdjusterWidget::setName (const QString& name, bool addon)
|
|
|
|
|
// path points somewhere else or is a leaf name.
|
|
|
|
|
path = mLocalData / path.filename();
|
|
|
|
|
|
|
|
|
|
message = QString::fromUtf8 (("Will be saved as: " + path.native()).c_str());
|
|
|
|
|
message = QString::fromUtf8 (("Will be saved as: " + path.string()).c_str());
|
|
|
|
|
mResultPath = path;
|
|
|
|
|
mValid = true;
|
|
|
|
|
|
|
|
|
|