summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-13 15:01:41 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:10 +0100
commit90be5b23e62cbdd6c93d5703c29507e4ce463bac (patch)
tree0c07867fc93d3c84655ce7a8c7fb3ff8226139f8 /sd
parent6316de5b705623a01ab3af926dad2ef7e17dd55b (diff)
-Werror,-Wshift-sign-overflow
Change-Id: Ie6843c4d455dd82a8c1ebd8778165b04e7b94d71
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/eppt/pptx-epptooxml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx
index 18cdd31239a3..234f87c4074d 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -311,7 +311,7 @@ PowerPointExport::PowerPointExport( const Reference< XComponentContext > & rxCtx
PPTWriterBase(),
mnLayoutFileIdMax( 1 ),
mnSlideIdMax( 1 << 8 ),
- mnSlideMasterIdMax( 1 << 31 ),
+ mnSlideMasterIdMax( 1U << 31 ),
mnAnimationNodeIdMax( 1 )
{
memset( mLayoutInfo, 0, sizeof(mLayoutInfo) );