diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 18:26:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:44:59 +0900 |
commit | 52bf4ce9dd80ed5179fe6be622626c3376c0da99 (patch) | |
tree | 15d3c15b63288acf6505ced3d265f55cef05cf98 /kviewshell/documentWidget.cpp | |
parent | 169841a34676151ac67711c7d05c6343fdf50697 (diff) | |
download | tdegraphics-52bf4ce9dd80ed5179fe6be622626c3376c0da99.tar.gz tdegraphics-52bf4ce9dd80ed5179fe6be622626c3376c0da99.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kviewshell/documentWidget.cpp')
-rw-r--r-- | kviewshell/documentWidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kviewshell/documentWidget.cpp b/kviewshell/documentWidget.cpp index 90533c26..dfd97033 100644 --- a/kviewshell/documentWidget.cpp +++ b/kviewshell/documentWidget.cpp @@ -187,7 +187,7 @@ void DocumentWidget::paintEvent(TQPaintEvent *e) if (!isVisible()) { //kdDebug() << "widget of page " << pageNr << " is not visible. Abort rendering" << endl; - kapp->processEvents(); + tdeApp->processEvents(); return; } @@ -687,7 +687,7 @@ void DocumentWidget::delayedRequestPage() //kdDebug() << "delayedRequest: widget of page " << pageNr << " is not visible. Abort rendering" << endl; pixmapRequested = false; - kapp->processEvents(); + tdeApp->processEvents(); return; } @@ -699,7 +699,7 @@ void DocumentWidget::delayedRequestPage() // displayed one after another. Widthout it all widgets are updated after all the rendering // is completed. This is especially noticable in overview mode. After the change to a seperate // rendering thread this will probably not be needed anymore. - kapp->processEvents(); + tdeApp->processEvents(); } TQSize DocumentWidget::pageSize() const |