From kde-commits Thu Sep 07 17:19:02 2006 From: Andras Mantia Date: Thu, 07 Sep 2006 17:19:02 +0000 To: kde-commits Subject: branches/KDE/3.5/kdewebdev/quanta Message-Id: <1157649542.006038.9637.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=115764956126251 SVN commit 581836 by amantia: Respect the order of items in the .docrc. Patch from the bugreport. BUG: 133704 M +1 -0 ChangeLog M +2 -2 quanta.kdevelop M +1 -4 treeviews/docfolder.cpp --- branches/KDE/3.5/kdewebdev/quanta/ChangeLog #581835:581836 @@ -24,6 +24,7 @@ - default to a better place when saving a global toolbar to the local toolbar directory and improve the error message if a toolbar cannot be saved [#130236] + - respect the order of items in the .docrc [#133704] Version 3.5.3 (Release date: 23-05-2006; Started 18-03-2005): - bugfixes: --- branches/KDE/3.5/kdewebdev/quanta/quanta.kdevelop #581835:581836 @@ -170,7 +170,7 @@ false - + true @@ -276,8 +276,8 @@ false + Qt3 KDElibs3 - Qt3 --- branches/KDE/3.5/kdewebdev/quanta/treeviews/docfolder.cpp #581835:581836 @@ -79,10 +79,7 @@ QString url = config->readEntry( item ); DocItem *el = new DocItem( this, QString(item), basePath+url); el->setPixmap( 0, SmallIcon("info") ); - } - } - - for ( list.last(); ( item = list.current() ) ; list.prev() ) { + } else if ( item[0] == '#' ) { // current item is folder item++; // remove leading # QString l_url = config->readEntry( QString("folder_")+item, "" );