From daae05ccf52e37afc41dc1976afcc1f7c6fd978c Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 14 Apr 2012 10:05:34 +0200 Subject: [PATCH] WaE fix --- editeng/source/editeng/editdbg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editeng/source/editeng/editdbg.cxx b/editeng/source/editeng/editdbg.cxx index af2e37f747bc..98b4e9c57aec 100644 --- a/editeng/source/editeng/editdbg.cxx +++ b/editeng/source/editeng/editdbg.cxx @@ -461,7 +461,7 @@ void EditDbg::ShowEditEngineData( EditEngine* pEE, sal_Bool bInfoBox ) fprintf( fp, "\nMaxAutoPaperSize: %li x %li", pEE->GetMaxAutoPaperSize().Width(), pEE->GetMaxAutoPaperSize().Height() ); fprintf( fp, "\nMinAutoPaperSize: %li x %li", pEE->GetMinAutoPaperSize().Width(), pEE->GetMinAutoPaperSize().Height() ); fprintf( fp, "\nUpdate: %i", pEE->GetUpdateMode() ); - fprintf( fp, "\nNumber of Views: %i", pEE->GetViewCount() ); + fprintf( fp, "\nNumber of Views: %" SAL_PRIuUINT64, pEE->GetViewCount() ); for ( sal_uInt16 nView = 0; nView < pEE->GetViewCount(); nView++ ) { EditView* pV = pEE->GetView( nView );