summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/convwatch.py2
-rw-r--r--sw/source/core/layout/layact.cxx6
2 files changed, 8 insertions, 0 deletions
diff --git a/bin/convwatch.py b/bin/convwatch.py
index d88d43d64a6f..93082186f319 100644
--- a/bin/convwatch.py
+++ b/bin/convwatch.py
@@ -280,6 +280,7 @@ def loadFromURL(xContext, url):
xDoc = None
try:
xDoc = xDesktop.loadComponentFromURL(url, "_blank", 0, loadProps)
+ log("...loadComponentFromURL done")
if xDoc is None:
raise Exception("No document loaded?")
time_ = 0
@@ -328,6 +329,7 @@ class LoadPrintFileTest:
else:
url = "file://" + quote(self.file)
xDoc = loadFromURL(xContext, url)
+ log("loadFromURL in: " + str(datetime.datetime.now() - start))
printDoc(xContext, xDoc, url + self.prtsuffix)
finally:
if xDoc:
diff --git a/sw/source/core/layout/layact.cxx b/sw/source/core/layout/layact.cxx
index 422b8aee0c46..4a811e171ddc 100644
--- a/sw/source/core/layout/layact.cxx
+++ b/sw/source/core/layout/layact.cxx
@@ -2088,7 +2088,10 @@ bool SwLayIdle::DoIdleJob( IdleJobType eJob, bool bVisAreaOnly )
while( pCnt && pPage->IsAnLower( pCnt ) )
{
if ( DoIdleJob_( pCnt, eJob ) )
+ {
+ SAL_INFO("sw.idle", "DoIdleJob " << eJob << " interrupted on page " << pPage->GetPhyPageNum());
return true;
+ }
pCnt = pCnt->GetNextContentFrame();
}
if ( pPage->GetSortedObjs() )
@@ -2105,7 +2108,10 @@ bool SwLayIdle::DoIdleJob( IdleJobType eJob, bool bVisAreaOnly )
if ( pC->IsTextFrame() )
{
if ( DoIdleJob_( pC, eJob ) )
+ {
+ SAL_INFO("sw.idle", "DoIdleJob " << eJob << " interrupted on page " << pPage->GetPhyPageNum());
return true;
+ }
}
pC = pC->GetNextContentFrame();
}