| Summary: | Crash in MainWindowIDEAl::~MainWindowIDEAl on exit | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Jon Smirl <jonsmirl> |
| Component: | UI: IDEAl | Assignee: | KDevelop Developers <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | ||
| Priority: | NOR | ||
| Version First Reported In: | git master | ||
| Target Milestone: | --- | ||
| Platform: | RedHat Enterprise Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Jon Smirl
2003-07-02 23:08:48 UTC
Subject: kdevelop CVS commit by amantia: Don't crash on exit. CCMAIL: 60658-done@bugs.kde.org M +1 -0 ChangeLog 1.1064 M +2 -1 src/mainwindowideal.h 1.14 --- kdevelop/ChangeLog #1.1063:1.1064 @@ -1,4 +1,5 @@ 2003-07-19 Andras Mantia <amantia@freemail.hu> * apply the editor settings to the opened files + * don't crash on exit [#60658] 2003-07-15 Andras Mantia <amantia@freemail.hu> --- kdevelop/src/mainwindowideal.h #1.13:1.14 @@ -26,4 +26,5 @@ #include <qdatetime.h> #include <qmap.h> +#include <qguardedptr.h> @@ -71,5 +72,5 @@ protected: * Pointer to the Window menu. SDI specific. MDI uses the feature of qextmdimainfrm. */ - QPopupMenu *m_pWindowMenu; + QGuardedPtr<QPopupMenu> m_pWindowMenu; public slots: |