From 65bd55cc6aa3056d0f4f62b9ab0f9d0527137ed4 Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Wed, 17 Sep 2014 12:19:08 +0200 Subject: Fix the Windows build. Change-Id: I38fd1856044863b46792e3a1d6f69e51e9fffe0f --- svx/source/tbxctrls/Palette.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'svx/source/tbxctrls/Palette.cxx') diff --git a/svx/source/tbxctrls/Palette.cxx b/svx/source/tbxctrls/Palette.cxx index ba5bdbd908f4..b0e70db75ff9 100644 --- a/svx/source/tbxctrls/Palette.cxx +++ b/svx/source/tbxctrls/Palette.cxx @@ -52,8 +52,7 @@ void PaletteGPL::LoadColorSet( SvxColorValueSet& rColorSet ) rColorSet.Clear(); int nIx = 1; - for(typename ColorList::const_iterator it = maColors.begin(); - it != maColors.end(); ++it) + for (ColorList::const_iterator it = maColors.begin(); it != maColors.end(); ++it) { rColorSet.InsertItem(nIx, it->first, it->second); ++nIx; -- cgit