Document the reason for the session management bug. But I'll fix it from another angle first.

svn path=/trunk/KDE/kdebase/apps/; revision=854592
This commit is contained in:
David Faure 2008-08-29 21:21:40 +00:00
parent 76aa34c064
commit 648b5d05d5

View file

@ -4457,9 +4457,9 @@ void KonqExtendedBookmarkOwner::openFolderinTabs(const KBookmarkGroup &grp)
return;
if (list.size() > 20) {
if(KMessageBox::questionYesNo(m_pKonqMainWindow,
if(KMessageBox::questionYesNo(m_pKonqMainWindow,
i18n("You have requested to open more than 20 bookmarks in tabs. "
"This might take a while. Continue?"),
"This might take a while. Continue?"),
i18n("Open folder in new tabs")) != KMessageBox::Yes)
return;
}
@ -4822,6 +4822,9 @@ void KonqMainWindow::saveProperties( KConfigGroup& config )
void KonqMainWindow::readProperties( const KConfigGroup& configGroup )
{
// ######### THIS CANNOT WORK. It's too late to change the xmlfile, the GUI has been built already!
// We need to delay doing setXMLFile+createGUI until we know which profile we are going to use, then...
// TODO: Big refactoring ahead.
const QString xmluiFile = configGroup.readEntry("XMLUIFile","konqueror.rc");
setXMLFile(xmluiFile);