diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-09-11 10:34:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-11 17:11:09 +0200 |
commit | 99c2a1c64b3517a4cbbc0ddcf9acd3e190188d1e (patch) | |
tree | 5dfa9eb7d2cbe367251a13378410de0028edc810 /sd/source | |
parent | 0e2467a1554faa7b1b73d042539e79de806aafdd (diff) |
-Werror,-Wnon-literal-null-conversion
The wrong use of GetBoolValue overload appears to be in there "for a very long
time already."
Change-Id: I14c8ffefd5f16c52e6eb4197bc50b7f0b4ca322e
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/DocumentRenderer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/view/DocumentRenderer.cxx b/sd/source/ui/view/DocumentRenderer.cxx index 2a9233afdbdb..12d3bd224293 100644 --- a/sd/source/ui/view/DocumentRenderer.cxx +++ b/sd/source/ui/view/DocumentRenderer.cxx @@ -114,7 +114,7 @@ namespace { bool IsHandoutHorizontal() const { - return GetBoolValue("SlidesPerPageOrder", sal_Int32(0), true); + return GetBoolValue("SlidesPerPageOrder", sal_Int32(0)); } sal_Int32 GetHandoutPageCount() const |