diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-03-18 20:53:45 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-03-18 21:00:22 +0200 |
commit | 66acee112a3b6ac7238ac825a40d5cde00cc96eb (patch) | |
tree | aacb4967de19328ca6b013c8fc64fd16da298b9a /sw | |
parent | 3de77b853bdda5205460fc04942b4f99079e03f3 (diff) |
Add a couple SAL_INFOs
Change-Id: I3773f5432ff4e2a005e0c67d9c65fdb00de6f16b
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/layact.cxx | 4 | ||||
-rw-r--r-- | sw/source/core/view/viewsh.cxx | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sw/source/core/layout/layact.cxx b/sw/source/core/layout/layact.cxx index eee9e3110401..5f72ea6e91a7 100644 --- a/sw/source/core/layout/layact.cxx +++ b/sw/source/core/layout/layact.cxx @@ -2159,6 +2159,8 @@ SwLayIdle::SwLayIdle( SwRootFrm *pRt, SwViewImp *pI ) : , m_bIndicator( false ) #endif { + SAL_INFO("sw.idle", "SwLayIdle() entry"); + pImp->pIdleAct = this; SHOW_IDLE( COL_LIGHTRED ); @@ -2330,6 +2332,8 @@ SwLayIdle::SwLayIdle( SwRootFrm *pRt, SwViewImp *pI ) : if( pImp->IsAccessible() ) pImp->FireAccessibleEvents(); + SAL_INFO("sw.idle", "SwLayIdle() return"); + #ifdef DBG_UTIL if ( m_bIndicator && pImp->GetShell()->GetWin() ) { diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx index 9bf78f7bac3f..aad5f47788f0 100644 --- a/sw/source/core/view/viewsh.cxx +++ b/sw/source/core/view/viewsh.cxx @@ -1784,7 +1784,7 @@ extern "C" void touch_lo_draw_tile(void *context, int contextWidth, int contextHeight, MLODpxPoint tileDpxPosition, MLODpxSize tileDpxSize) { #ifdef IOS - SAL_INFO("sw", "touch_lo_draw_tile(" << contextWidth << ", " << contextHeight << ", (" << tileDpxPosition.x << "," << tileDpxPosition.y << "), " << tileDpxSize.width << "x" << tileDpxSize.height << ")"); + SAL_INFO("sw.tiled", "touch_lo_draw_tile(" << contextWidth << "x" << contextHeight << ", (" << tileDpxPosition.x << "," << tileDpxPosition.y << "), " << tileDpxSize.width << "x" << tileDpxSize.height << ")"); MLORipPoint tileRipPosition = MLORipPointByDpxPoint(tileDpxPosition); MLORipSize rileRipSize = MLORipSizeByDpxSize(tileDpxSize); MLORip tileRipPosX = tileRipPosition.x; @@ -1823,6 +1823,7 @@ void touch_lo_draw_tile(void *context, int contextWidth, int contextHeight, MLOD pViewShell->PaintTile(aDevice, contextWidth, contextHeight, tilePosX, tilePosY, tileWidth, tileHeight); } Application::ReleaseSolarMutex(); + SAL_INFO("sw.tiled", "touch_lo_draw_tile(" << contextWidth << "x" << contextHeight << ", (" << tileDpxPosition.x << "," << tileDpxPosition.y << "), " << tileDpxSize.width << "x" << tileDpxSize.height << ") return"); #else (void) context; (void) contextWidth; |