summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-03 13:20:25 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-03 13:20:25 +0000
commitd142be6bda3764f559effb3fd79a2b456841118b (patch)
treedd5b0a33b333d60cecb284ab5e6b7284e8e60e77 /svx
parent9183ccfb2dafa26e7319726d57a1d64390bc8f28 (diff)
WaE: fix shadow warning post DECLARE_LIST removal
Diffstat (limited to 'svx')
-rw-r--r--svx/source/gallery2/galtheme.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/svx/source/gallery2/galtheme.cxx b/svx/source/gallery2/galtheme.cxx
index 7413ef6eb3..944020828e 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 );