| Summary: | changing projects with unsaved work | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Jon Smirl <jonsmirl> |
| Component: | general | Assignee: | KDevelop Developers <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | git master | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Jon Smirl
2004-02-13 19:44:51 UTC
CVS commit by dagerbo: bugfix CCMAIL: 75172-done@bugs.kde.org M +1 -0 projectmanager.cpp 1.72 --- kdevelop/src/projectmanager.cpp #1.71:1.72 @@ -249,4 +249,5 @@ bool ProjectManager::loadProject(const K if( projectLoaded() && !closeProject() ) { + m_openRecentProjectAction->setCurrentItem( -1 ); TopLevel::getInstance()->main()->menuBar()->setEnabled( true ); kapp->restoreOverrideCursor(); CVS commit by dagerbo: CCMAIL: 75172@bugs.kde.org M +3 -0 projectmanager.cpp 1.64.2.3 --- kdevelop/src/projectmanager.cpp #1.64.2.2:1.64.2.3 @@ -268,5 +268,8 @@ bool ProjectManager::loadProject(const K if( projectLoaded() && !closeProject() ) + { + m_openRecentProjectAction->setCurrentItem( -1 ); return false; + } m_info = new ProjectInfo; |