Browse Source

No more PRs shall be merged until the new_api branch in my repo is merged. Contributions are welcome.

This commit fixes some minor style issues with #1406
pull/1418/head
Dubslow 10 years ago
parent
commit
885dc0638a
No known key found for this signature in database
GPG Key ID: 3DB8E05315C220AA
  1. 6
      src/widget/widget.cpp

6
src/widget/widget.cpp

@ -59,7 +59,7 @@ @@ -59,7 +59,7 @@
#include <QList>
#include <QDesktopServices>
#include <QProcess>
#include <qlibraryinfo.h>
#include <QLibraryInfo>
#include <tox/tox.h>
#ifdef Q_OS_ANDROID
@ -231,10 +231,14 @@ void Widget::setTranslation() @@ -231,10 +231,14 @@ void Widget::setTranslation()
qDebug() << "System translation loaded" << locale;
}
else
{
qDebug() << "System translation not loaded" << locale;
}
}
else
{
qDebug() << "Error loading translation" << locale;
}
QCoreApplication::installTranslator(translator);
}

Loading…
Cancel
Save