mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
Use app.applicationName() instead of hardcoded "GoldenDict" in previous commit
This commit is contained in:
parent
534509adaf
commit
37ebe005de
2
main.cc
2
main.cc
|
@ -130,7 +130,7 @@ int main( int argc, char ** argv )
|
|||
}
|
||||
catch( Config::exError )
|
||||
{
|
||||
QMessageBox mb( QMessageBox::Warning, "GoldenDict", "Error in configuration file. Continue with default settings?",
|
||||
QMessageBox mb( QMessageBox::Warning, app.applicationName(), "Error in configuration file. Continue with default settings?",
|
||||
QMessageBox::Yes | QMessageBox::No );
|
||||
mb.exec();
|
||||
if( mb.result() != QMessageBox::Yes )
|
||||
|
|
Loading…
Reference in a new issue