diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-01-14 11:30:26 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-05-18 16:37:50 +0200 |
commit | 96ec536638a144821a5111582b62c5fa5781e98c (patch) | |
tree | 85a5ce0323a039e6811389cb3a2dc1f752bdf0e7 /editeng | |
parent | 31d38683a2cba72420d5e30c026c87dff855a949 (diff) |
fix for gcc 4.7: unable to find string literal operator
(cherry picked from commit fcc8db1d2be9a25f79cbcc14043b495d240bb8bf)
Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/editdbg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/editdbg.cxx b/editeng/source/editeng/editdbg.cxx index 938900172873..fc9c56223166 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() ); |