Should have been included in previous commit.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4611 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2014-11-20 19:01:52 +00:00
parent 3a5edb5af5
commit c5d053dfa7
1 changed files with 5 additions and 2 deletions

View File

@ -362,7 +362,8 @@ MainWindow::MainWindow(bool multiple, QSettings * settings, QSharedMemory *shdme
{
if (!quitFile.remove ())
{
msgBox ("Error removing \"" + quitFile.fileName () + "\" - OK to retry.");
msgBox ("Error removing \"" + quitFile.fileName () +
"\" - OK to retry.");
}
}
}
@ -372,10 +373,12 @@ MainWindow::MainWindow(bool multiple, QSettings * settings, QSharedMemory *shdme
QStringList jt9_args {
"-s", QApplication::applicationName ()
, "-w", "1"
, "-e", QDir::toNativeSeparators (m_appDir)
, "-a", QDir::toNativeSeparators (m_config.data_path ().absolutePath ())
};
proc_jt9.start(QDir::toNativeSeparators (m_appDir) + QDir::separator () + "jt9", jt9_args, QIODevice::ReadWrite | QIODevice::Unbuffered);
proc_jt9.start(QDir::toNativeSeparators (m_appDir) + QDir::separator () +
"jt9", jt9_args, QIODevice::ReadWrite | QIODevice::Unbuffered);
getpfx(); //Load the prefix/suffix dictionary
genStdMsgs(m_rpt);