diff --git a/main.cpp b/main.cpp index e68ec6fe..298c8eb3 100644 --- a/main.cpp +++ b/main.cpp @@ -214,7 +214,6 @@ int main(int argc, char *argv[]) qDebug() << "Available Translations"; QFileInfoList list=dir.entryInfoList(); QString language=PREF[STR_PREF_Language].toString(); - bool langok=false; QString langfile,langname; @@ -238,16 +237,17 @@ int main(int argc, char *argv[]) } } - if (langfile.isEmpty()) { + if (language.isEmpty()) { langsel.connect(&lang_okbtn,SIGNAL(clicked()),&langsel, SLOT(close())); langsel.exec(); langsel.disconnect(&lang_okbtn,SIGNAL(clicked()),&langsel, SLOT(close())); - langfile=lang_combo.currentText(); - PREF[STR_PREF_Language]=langfile; + langname=lang_combo.currentText(); + langfile=lang_combo.itemData(lang_combo.currentIndex()).toString(); + PREF[STR_PREF_Language]=langname; } - qDebug() << "Loading Translation" << langfile; + qDebug() << "Loading " << langname << " Translation" << langfile; QTranslator translator; translator.load(langfile,QCoreApplication::applicationDirPath()+"/Translations"); diff --git a/mainwindow.cpp b/mainwindow.cpp index a7961a7e..d546bf94 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -612,7 +612,7 @@ void MainWindow::on_action_About_triggered() QString msg=QString( "" "
" -"

"+tr("SleepyHead")+" v%1.%2.%3-%4 (%8)

"+tr("Build Date")+": %5 %6
%7
"+tr("Data Folder")+": %9


"+ +"

"+STR_TR_SleepyHead+" v%1.%2.%3-%4 (%8)

"+tr("Build Date")+": %5 %6
%7
"+tr("Data Folder Location")+": %9


"+ tr("Copyright")+" ©2012 Mark Watkins (jedimark)
\n"+ tr("This software is released under the GNU Public License v3.0
")+ "

"+tr("SleepyHead Project Page")+": http://sourceforge.net/projects/sleepyhead
"+ @@ -1095,7 +1095,8 @@ void MainWindow::RestartApplication(bool force_login) args << "-p"; if (force_login) args << "-l"; if (QProcess::startDetached(apppath,args)) { - QApplication::instance()->exit(); + ::exit(0); + //QApplication::instance()->exit(); } else QMessageBox::warning(this,tr("Gah!"),tr("If you can read this, the restart command didn't work. Your going to have to do it yourself manually."),QMessageBox::Ok); #endif }