diff options
Diffstat (limited to 'l10ntools/source')
-rw-r--r-- | l10ntools/source/localize.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/l10ntools/source/localize.cxx b/l10ntools/source/localize.cxx index 822996d85b55..9a2cf8ad4b94 100644 --- a/l10ntools/source/localize.cxx +++ b/l10ntools/source/localize.cxx @@ -247,9 +247,7 @@ void handleFilesOfDir( ///Handle files in lexical order std::sort(aFiles.begin(), aFiles.end()); - typedef std::vector<OUString>::const_iterator citer_t; - - for( citer_t aIt = aFiles.begin(); aIt != aFiles.end(); ++aIt ) + for( auto aIt = aFiles.begin(); aIt != aFiles.end(); ++aIt ) handleFile(rProject, *aIt, rPotDir); } |