Convertor error in console mode.
--HG-- branch : develop
This commit is contained in:
parent
0b57b8821a
commit
9069337a7a
|
@ -171,8 +171,11 @@ void TMainWindow::LoadFile(const QString &path)
|
|||
{
|
||||
std::exit(V_EX_NOINPUT);
|
||||
}
|
||||
else
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Check if file already opened
|
||||
QList<TMainWindow*>list = qApp->MainWindows();
|
||||
|
@ -196,8 +199,11 @@ void TMainWindow::LoadFile(const QString &path)
|
|||
{
|
||||
std::exit(V_EX_NOINPUT);
|
||||
}
|
||||
else
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
|
@ -270,9 +276,17 @@ void TMainWindow::LoadFile(const QString &path)
|
|||
delete data;
|
||||
data = nullptr;
|
||||
lock.reset();
|
||||
|
||||
if (qApp->IsTestMode())
|
||||
{
|
||||
std::exit(V_EX_NOINPUT);
|
||||
}
|
||||
else
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
qApp->NewMainWindow();
|
||||
|
|
Loading…
Reference in New Issue
Block a user