diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-01-24 10:19:42 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-01-24 10:21:13 +0100 |
commit | 04b8bac4a9e8e251ca61c4373beb0f1df76b2d54 (patch) | |
tree | 4afb026cd621541c8c7aa17a2410bedba338a09a /sd | |
parent | 6b58e58dc71f5371829e54fdddd5ca1b69c80aff (diff) |
finalize gcc 4.7 string literal operators
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/pptx-epptbase.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/filter/eppt/pptx-epptbase.cxx b/sd/source/filter/eppt/pptx-epptbase.cxx index 4f5767b1c577..dc3e22180aba 100644 --- a/sd/source/filter/eppt/pptx-epptbase.cxx +++ b/sd/source/filter/eppt/pptx-epptbase.cxx @@ -236,7 +236,7 @@ void PPTWriterBase::exportPPT( const std::vector< com::sun::star::beans::Propert for ( i = 0; i < mnPages; i++ ) { - DBG(printf( "call ImplCreateSlide( %"SAL_PRIuUINT32" )\n", i)); + DBG(printf( "call ImplCreateSlide( %" SAL_PRIuUINT32 " )\n", i)); if ( !CreateSlide( i ) ) return; } @@ -454,7 +454,7 @@ sal_Int32 PPTWriterBase::GetLayoutOffset( const ::com::sun::star::uno::Reference if ( GetPropertyValue( aAny, rXPropSet, String( RTL_CONSTASCII_USTRINGPARAM( "Layout" ) ) ), sal_True ) aAny >>= nLayout; - DBG(printf("GetLayoutOffset %"SAL_PRIdINT32"\n", nLayout)); + DBG(printf("GetLayoutOffset %" SAL_PRIdINT32 "\n", nLayout)); return nLayout; } @@ -485,7 +485,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, EPP_LAYOUT_SIZE )); + DBG(printf("asked %" SAL_PRIdINT32 " for layout outside of 0,%d array scope\n", nOffset, EPP_LAYOUT_SIZE )); return pPHLayout[ 0 ]; } |