Summary: | Project opening/ closing behaviour | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Hendrik Kueck <TNHCWXSTKSJX> |
Component: | general | Assignee: | KDevelop Developers <kdevelop-devel> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | git master | ||
Target Milestone: | --- | ||
Platform: | RedHat Enterprise Linux | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Hendrik Kueck
2003-08-11 08:23:12 UTC
This is a nice whish Subject: kdevelop/src CVS commit by raggi: fixed bug 62476. patch by Sascha Cunz <mail@SaCu.DE> CCMAIL: 62476-done@bugs.kde.org M +1 -1 partcontroller.h 1.38 M +2 -0 projectmanager.cpp 1.61 --- kdevelop/src/partcontroller.h #1.37:1.38 @@ -62,4 +62,5 @@ public slots: void slotCloseAllButPartForWidget(QWidget *widget); void slotActivePartChanged( KParts::Part* part ); + void slotCloseAllWindows(); protected: @@ -77,5 +78,4 @@ private slots: void slotCloseWindow(); - void slotCloseAllWindows(); void slotCloseOtherWindows(); --- kdevelop/src/projectmanager.cpp #1.60:1.61 @@ -346,4 +346,6 @@ bool ProjectManager::closeProject() m_projectOptionsAction->setEnabled(false); + PartController::getInstance()->slotCloseAllWindows(); + return true; } |