Next patch from Christian Spiel, ++it instead of it++

svn path=/trunk/KDE/kdebase/workspace/; revision=684303
icc-effect-5.14.5
David Faure 2007-07-06 13:39:03 +00:00
parent 6c8b18f379
commit 407812ff6f
2 changed files with 4 additions and 4 deletions

View File

@ -625,7 +625,7 @@ void EffectsHandlerImpl::loadEffect( const QString& name )
kWarning( 1212 ) << k_funcinfo << "Effect names usually have kwin4_effect_ prefix" << endl;
// Make sure a single effect won't be loaded multiple times
for(QVector< EffectPair >::const_iterator it = loaded_effects.constBegin(); it != loaded_effects.constEnd(); it++)
for(QVector< EffectPair >::const_iterator it = loaded_effects.constBegin(); it != loaded_effects.constEnd(); ++it)
{
if( (*it).first == name )
{
@ -692,7 +692,7 @@ void EffectsHandlerImpl::unloadEffect( const QString& name )
assert( current_draw_window == 0 );
assert( current_transform == 0 );
for( QMap< int, EffectPair >::iterator it = effect_order.begin(); it != effect_order.end(); it++)
for( QMap< int, EffectPair >::iterator it = effect_order.begin(); it != effect_order.end(); ++it)
{
if ( it.value().first == name )
{
@ -719,7 +719,7 @@ void EffectsHandlerImpl::reloadEffect( const QString& name )
bool EffectsHandlerImpl::isEffectLoaded( const QString& name )
{
for( QVector< EffectPair >::iterator it = loaded_effects.begin(); it != loaded_effects.end(); it++)
for( QVector< EffectPair >::iterator it = loaded_effects.begin(); it != loaded_effects.end(); ++it)
if ( (*it).first == name )
return true;

View File

@ -217,7 +217,7 @@ void KWinDecorationModule::findDecorations()
QStringList dirList = KGlobal::dirs()->findDirs("data", "kwin");
QStringList::ConstIterator it;
for (it = dirList.begin(); it != dirList.end(); it++)
for (it = dirList.begin(); it != dirList.end(); ++it)
{
QDir d(*it);
if (d.exists())