From kde-commits Tue Jan 09 19:37:02 2007 From: Andras Mantia Date: Tue, 09 Jan 2007 19:37:02 +0000 To: kde-commits Subject: branches/KDE/3.5/kdewebdev/quanta Message-Id: <1168371422.928370.29396.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=116837143819358 SVN commit 621786 by amantia: Do not set the current project mark to a project that could not be opened. BUG: 137186 M +1 -0 ChangeLog M +2 -2 project/project.cpp --- branches/KDE/3.5/kdewebdev/quanta/ChangeLog #621785:621786 @@ -8,6 +8,7 @@ - use the correct encoding in the file dialogs [#138343] - don't lose upload profile settings in certain cases - fix symlink handling in Project Rescan, New Project adding files/folders [#138107] + - do not set the current project mark to a project that could not be opened [#137186] Version 3.5.5 (Release date: 11-10-2006; Started 01-09-2006): - bugfixes: --- branches/KDE/3.5/kdewebdev/quanta/project/project.cpp #621785:621786 @@ -261,8 +261,8 @@ == KMessageBox::Yes) { d->m_projectRecent->removeURL(url); - } - d->m_projectRecent->setCurrentItem(0); + } else + d->m_projectRecent->setCurrentItem(0); } else { d->loadProject ( url );