1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

refactor(profileimporter): Removed extra spaces

This commit is contained in:
Diadlo 2016-07-30 13:15:18 +03:00
parent 58ea0afed1
commit df7bf32072
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727

View File

@ -50,7 +50,7 @@ bool ProfileImporter::importProfile()
if (info.suffix() != "tox")
{
QMessageBox::warning( this,
QMessageBox::warning(this,
tr("Ignoring non-Tox file", "popup title"),
tr("Warning: You have chosen a file that is not a Tox save file; ignoring.", "popup text"),
QMessageBox::Ok);
@ -73,5 +73,4 @@ bool ProfileImporter::importProfile()
QFile::copy(path, profilePath);
return true; //import successfull
}