diff options
Diffstat (limited to 'svx/source/gallery2/galtheme.cxx')
-rw-r--r-- | svx/source/gallery2/galtheme.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/svx/source/gallery2/galtheme.cxx b/svx/source/gallery2/galtheme.cxx index 6f6846d3008e..0ea06ceae6d1 100644 --- a/svx/source/gallery2/galtheme.cxx +++ b/svx/source/gallery2/galtheme.cxx @@ -559,16 +559,15 @@ void GalleryTheme::Actualize( const Link& rActualizeLink, GalleryProgress* pProg String aFormat; GalleryObject* pEntry; const size_t nCount = aObjectList.size(); - size_t i; LockBroadcaster(); bAbortActualize = FALSE; // LoeschFlag zuruecksetzen - for ( i = 0; i < nCount; i++ ) + for (size_t i = 0; i < nCount; i++) aObjectList[ i ]->bDummy = FALSE; - for( i = 0; ( i < nCount ) && !bAbortActualize; i++ ) + for(size_t i = 0; ( i < nCount ) && !bAbortActualize; i++) { if( pProgress ) pProgress->Update( i, nCount - 1 ); |