You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2013/05/08 20:34:55 UTC

svn commit: r1480398 - /openoffice/branches/rejuvenate01/main/editeng/source/editeng/editdbg.cxx

Author: hdu
Date: Wed May  8 18:34:55 2013
New Revision: 1480398

URL: http://svn.apache.org/r1480398
Log:
#i121715# fix debug=t compilation of EditEngine for C++11

Clang rejects string concatenations that are ambigous with the
the new C++11 feature "user-defined literals" (N2378)

Modified:
    openoffice/branches/rejuvenate01/main/editeng/source/editeng/editdbg.cxx

Modified: openoffice/branches/rejuvenate01/main/editeng/source/editeng/editdbg.cxx
URL: http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/editeng/source/editeng/editdbg.cxx?rev=1480398&r1=1480397&r2=1480398&view=diff
==============================================================================
--- openoffice/branches/rejuvenate01/main/editeng/source/editeng/editdbg.cxx (original)
+++ openoffice/branches/rejuvenate01/main/editeng/source/editeng/editdbg.cxx Wed May  8 18:34:55 2013
@@ -454,7 +454,7 @@ void EditDbg::ShowEditEngineData( EditEn
 	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() );