mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-14 03:09:08 +00:00
Error message when files can't be opened.
This commit is contained in:
parent
7f1f8d4adc
commit
e2ab3dc0c6
1 changed files with 8 additions and 0 deletions
|
@ -112,6 +112,9 @@ void UXTEditor::open( QString filename )
|
||||||
// The work file cannot be found, cannot proceed
|
// The work file cannot be found, cannot proceed
|
||||||
if( filename.endsWith( "wk.uxt" ) )
|
if( filename.endsWith( "wk.uxt" ) )
|
||||||
{
|
{
|
||||||
|
QMessageBox::critical( this,
|
||||||
|
tr( "Error opening file.." ),
|
||||||
|
tr( "There was an error opening wk.uxt" ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -125,7 +128,12 @@ void UXTEditor::open( QString filename )
|
||||||
// The work file cannot be found, cannot proceed
|
// The work file cannot be found, cannot proceed
|
||||||
STRING_MANAGER::loadStringFile( fn.toUtf8().constData(), infos, true );
|
STRING_MANAGER::loadStringFile( fn.toUtf8().constData(), infos, true );
|
||||||
if( d_ptr->infos.size() == 0 )
|
if( d_ptr->infos.size() == 0 )
|
||||||
|
{
|
||||||
|
QMessageBox::critical( this,
|
||||||
|
tr( "Error opening Uxt file" ),
|
||||||
|
tr( "Neither the specified file nor wk.uxt could be opened." ) );
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
d_ptr->loadedFromWK = true;
|
d_ptr->loadedFromWK = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue