summaryrefslogtreecommitdiff
path: root/svx/source/tbxctrls/Palette.cxx
diff options
context:
space:
mode:
authorKrisztian Pinter <pin.terminator@gmail.com>2014-08-11 17:35:50 +0200
committerKrisztian Pinter <pin.terminator@gmail.com>2014-08-11 17:35:50 +0200
commited6e4c65965fefdf5b638d6a2f8ca5fac856aa3b (patch)
tree387dc2e6535a4f4b58ddc947ff5b8602d1849308 /svx/source/tbxctrls/Palette.cxx
parentd1f87b779d5962455cac81622113a6480e4ef752 (diff)
Add recent colorsfeature/gsoc14-colors
Change-Id: Id6b2239149bf7d0b3c9242efb7a72091e32c3384
Diffstat (limited to 'svx/source/tbxctrls/Palette.cxx')
-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 496e0fcc678e..ba5bdbd908f4 100644
--- a/svx/source/tbxctrls/Palette.cxx
+++ b/svx/source/tbxctrls/Palette.cxx
@@ -52,10 +52,9 @@ void PaletteGPL::LoadColorSet( SvxColorValueSet& rColorSet )
rColorSet.Clear();
int nIx = 1;
- for(ColorList::const_iterator it = maColors.begin();
+ for(typename ColorList::const_iterator it = maColors.begin();
it != maColors.end(); ++it)
{
- // TODO make it->second OUString
rColorSet.InsertItem(nIx, it->first, it->second);
++nIx;
}