summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-17 11:41:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-17 11:57:52 +0100
commit68ff48e96db33ad03268ca57b1a31e68a514261a (patch)
tree96dd61562d74738f45cc14e56448d20ba88249c0
parent91b285c13c306afc1b8478fe386e40c964d88014 (diff)
Make bRestartAtEachPage a proper bool
...the "silent change" of creating a proper bool Any from it in DomainMapper::sprmWithProps (writerfilter/source/dmapper/DomainMapper.cxx) now is probably OK, given that css.text.LineNumberingProperties specifies RestartAtEachPage as a boolean property. Change-Id: I4f98630eed8327e97feac1aa99f0abfa9fc32043
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.hxx b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
index d50ffd39070b..9a3de2b76519 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.hxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
@@ -273,7 +273,7 @@ struct LineNumberSettings
bool bIsOn;
sal_Int32 nDistance;
sal_Int32 nInterval;
- sal_Int32 bRestartAtEachPage;
+ bool bRestartAtEachPage;
sal_Int32 nStartValue;
LineNumberSettings() :
bIsOn(false)