Fix for a previous commits

Crowdin:  Sketcher/App/SketcherAnalysis remove newlines
Crowdin:  Part/AttachmentEditor/TaskAttachmentEditor.py fix previous commiit
Crowdin:  Gui/NetworkRetriever.cpp correct previous commit
This commit is contained in:
luz.paz
2019-01-26 06:29:51 -05:00
committed by Yorik van Havre
parent 1770117406
commit 3253de75e9
3 changed files with 12 additions and 12 deletions

View File

@@ -118,7 +118,8 @@ void NetworkRetriever::testFailure()
if ( wget->state() == QProcess::Running )
{
d->fail = false;
Base::Console().Message( tr("Download started...").toLatin1() + QString::fromUtf8("\n"));
QString msg = tr("Download started...") + QString::fromUtf8("\n"); // all QString
Base::Console().Message(msg.toUtf8().constData()); // all cStyleString
}
}