summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-09-17 12:19:08 +0200
committerJan Holesovsky <kendy@collabora.com>2014-09-17 12:19:55 +0200
commit65bd55cc6aa3056d0f4f62b9ab0f9d0527137ed4 (patch)
treef22da28a71c83cab5853a826f6bfc6f05a4d3ecc /svx
parente7f8b9f8f558e3d862d32a73d0d91f83d7d7be6b (diff)
Fix the Windows build.
Change-Id: I38fd1856044863b46792e3a1d6f69e51e9fffe0f
Diffstat (limited to 'svx')
-rw-r--r--svx/source/tbxctrls/Palette.cxx3
1 files changed, 1 insertions, 2 deletions
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;