summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorJacobo Aragunde Pérez <jaragunde@igalia.com>2013-12-11 18:41:56 +0100
committerJacobo Aragunde Pérez <jaragunde@igalia.com>2013-12-11 18:42:16 +0100
commit7ab65f71c3f986d46914dd1c4c3790ccdb07bb10 (patch)
treee67c9e265030f5216d3d3ea4843448722016e9c4 /writerfilter
parentda1392934e043bfd12b94dab7b874ddf940f097b (diff)
Fix member initialization to comply with ISO C++
Change-Id: Id7ec3a3fe546bbd68f74c732c9708a61d400e946
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/ThemeTable.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/writerfilter/source/dmapper/ThemeTable.cxx b/writerfilter/source/dmapper/ThemeTable.cxx
index 6d623e024b03..ff39b6b4dafc 100644
--- a/writerfilter/source/dmapper/ThemeTable.cxx
+++ b/writerfilter/source/dmapper/ThemeTable.cxx
@@ -34,12 +34,13 @@ struct ThemeTable_Impl
{
ThemeTable_Impl() :
m_currentThemeFontId(0),
+ m_supplementalFontId(0),
m_currentFontThemeEntry() {}
std::map<sal_uInt32, std::map<sal_uInt32, OUString> > m_themeFontMap;
sal_uInt32 m_currentThemeFontId;
std::map<sal_uInt32, OUString> m_currentFontThemeEntry;
OUString m_supplementalFontName;
- sal_uInt32 m_supplementalFontId = 0;
+ sal_uInt32 m_supplementalFontId;
OUString m_themeFontLangEastAsia;
OUString m_themeFontLangBidi;
};