summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2013-11-29 14:39:04 +0000
committerHerbert Dürr <hdu@apache.org>2013-11-29 14:39:04 +0000
commit912bfc3843c054c4af90ffe4a7065eb9a8face6e (patch)
tree4de5751d996639b3aea944077c75845b6cc6c60c /editeng
parentdef161ea3c010d91f8ff325e4e258fcc8d15352c (diff)
#i123773# fix ambiguity between string concatenation and C++ user-defined literals
C++11 conformant compilers such as clang rejects string concatenations that are ambigous with the C++11 feature "user-defined literals" (N2378)
Notes
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/editeng/editdbg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/editdbg.cxx b/editeng/source/editeng/editdbg.cxx
index 2da367f05283..ad77e903bed0 100644
--- a/editeng/source/editeng/editdbg.cxx
+++ b/editeng/source/editeng/editdbg.cxx
@@ -454,7 +454,7 @@ void EditDbg::ShowEditEngineData( EditEngine* pEE, sal_Bool bInfoBox )
fprintf( fp, "\n\n ================================================================================" );
fprintf( fp, "\n================== EditEngine & Views ======================================" );
fprintf( fp, "\n================================================================================" );
- fprintf( fp, "\nControl: %"SAL_PRIxUINT32, pEE->GetControlWord() );
+ fprintf( fp, "\nControl: %" SAL_PRIxUINT32, pEE->GetControlWord() );
fprintf( fp, "\nRefMapMode: %i", pEE->pImpEditEngine->pRefDev->GetMapMode().GetMapUnit() );
fprintf( fp, "\nPaperSize: %li x %li", pEE->GetPaperSize().Width(), pEE->GetPaperSize().Height() );
fprintf( fp, "\nMaxAutoPaperSize: %li x %li", pEE->GetMaxAutoPaperSize().Width(), pEE->GetMaxAutoPaperSize().Height() );