mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
dhaumann:
fix crash due to kapp->exit(1) no exiting immediately BUG: 238197 svn path=/trunk/KDE/kdebase/apps/; revision=1128938
This commit is contained in:
parent
4de7cfab81
commit
02303a0a36
1 changed files with 2 additions and 1 deletions
|
@ -471,7 +471,8 @@ void KWrite::restore()
|
|||
{
|
||||
KMessageBox::error(0, i18n("A KDE text-editor component could not be found.\n"
|
||||
"Please check your KDE installation."));
|
||||
kapp->exit(1);
|
||||
// exit immediately (do not use kapp->exit(1))
|
||||
::exit(1);
|
||||
}
|
||||
|
||||
// simple mode
|
||||
|
|
Loading…
Reference in a new issue