summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-21 09:09:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-21 09:10:10 +0100
commita29301cf696ac093c03de05248c3c6adffd14818 (patch)
tree9237bf92bf3984d2876b744c8627715dac8b5a17
parent182fc4f184b77330fdbb32096b64f5fbc5b5f874 (diff)
fix debugging build
Change-Id: I7264f670dd60f6121a23a4cb5524edc3bf1dcee7
-rw-r--r--sd/source/filter/eppt/pptx-epptbase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/pptx-epptbase.cxx b/sd/source/filter/eppt/pptx-epptbase.cxx
index 28d73ec44028..1e17c096a696 100644
--- a/sd/source/filter/eppt/pptx-epptbase.cxx
+++ b/sd/source/filter/eppt/pptx-epptbase.cxx
@@ -471,7 +471,7 @@ PHLayout& PPTWriterBase::GetLayout( sal_Int32 nOffset ) const
if( nOffset >= 0 && nOffset < EPP_LAYOUT_SIZE )
return pPHLayout[ nOffset ];
- DBG(printf("asked %" SAL_PRIdINT32 " for layout outside of 0,%d array scope\n", nOffset, EppLayout::SIZE ));
+ DBG(printf("asked %" SAL_PRIdINT32 " for layout outside of 0,%d array scope\n", nOffset, EPP_LAYOUT_SIZE ));
return pPHLayout[ 0 ];
}