SVN_SILENT fix compilation with strict iterators (to avoid potential detaching)

svn path=/trunk/KDE/kdebase/workspace/; revision=1015200
This commit is contained in:
David Faure 2009-08-24 21:25:19 +00:00
parent 405a531e9f
commit 53584d86c4

View file

@ -65,7 +65,7 @@ namespace Nitrogen
// also add exceptions
int index(0);
for( NitrogenExceptionList::const_iterator iter = begin(); iter != end(); iter++, index++ )
for( NitrogenExceptionList::const_iterator iter = constBegin(); iter != constEnd(); iter++, index++ )
{
KConfigGroup group( &config, exceptionGroupName( index ) );