Summary: | quanta: crashes when selecting multiple things in cervisia | ||
---|---|---|---|
Product: | [Unmaintained] quanta | Reporter: | Ben Burton <bab> |
Component: | general | Assignee: | András Manţia <amantia> |
Status: | RESOLVED FIXED | ||
Severity: | crash | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Ben Burton
2005-02-10 22:23:02 UTC
CVS commit by amantia: Don't crash when pressing CTRL+[SHIFT]+SPACE while a plugin is loaded. BUG: 99064 M +2 -0 ChangeLog 1.359 M +2 -2 src/quanta.cpp 1.701 --- kdewebdev/quanta/ChangeLog #1.358:1.359 @@ -60,4 +60,6 @@ - don't crash in case of corrupted quantarc - avoid crashes that happen if you close Quanta quickly after it is started + - don't crash when pressing CTRL+[SHIFT]+SPACE while a plugin is loaded [#99064] + - behavioral/user interface changes: --- kdewebdev/quanta/src/quanta.cpp #1.700:1.701 @@ -2982,5 +2982,5 @@ void QuantaApp::slotShowCompletion() { Document *w = ViewManager::ref()->activeDocument(); - if (w->codeCompletionIf) + if (w && w->codeCompletionIf) w->codeCompletionRequested(); } @@ -2989,5 +2989,5 @@ void QuantaApp::slotShowCompletionHint() { Document *w = ViewManager::ref()->activeDocument(); - if (w->codeCompletionIf) + if (w && w->codeCompletionIf) w->codeCompletionHintRequested(); } |