Summary: | crash in save session (on the exit question) | ||
---|---|---|---|
Product: | [Applications] kate | Reporter: | Thomas Creutz <alientxc> |
Component: | general | Assignee: | KWrite Developers <kwrite-bugs-null> |
Status: | RESOLVED DUPLICATE | ||
Severity: | crash | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Thomas Creutz
2007-07-26 13:40:28 UTC
duplicate of bug #147195, it was fixed by the following commit (try distribution online updates or KDE 3.5.8 once it is released): --- branches/KDE/3.5/kdebase/kate/app/katesession.cpp #676114:676115 @@ -381,13 +381,13 @@ if (sesExit == "ask") { - KDialogBase dlg( i18n ("Save Session?") + KDialogBase* dlg = new KDialogBase(i18n ("Save Session?") , KDialogBase::Yes | KDialogBase::No , KDialogBase::Yes, KDialogBase::No ); bool dontAgain = false; - int res = KMessageBox::createKMessageBox(&dlg, QMessageBox::Question, + int res = KMessageBox::createKMessageBox(dlg, QMessageBox::Question, i18n("Save current session?"), QStringList(), i18n("Do not ask again"), &dontAgain, KMessageBox::Notify); *** This bug has been marked as a duplicate of 147195 *** |