diff options
author | Michele Calgaro <[email protected]> | 2025-01-13 23:01:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:32:19 +0900 |
commit | 0b81a0c481a3a64d5449171a534bc8c91ae73181 (patch) | |
tree | 95cd236e86e934f492b4a4a1bd44bcf434a91ab2 /tdehtml/tdehtmlview.cpp | |
parent | 180ceca8bb26bbe97f60c99e5d172eb8ccd66e6d (diff) | |
download | tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.tar.gz tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.zip |
Rename TDEApplication::kApplication() to TDEApplication::tdeApplication() and kapp to tdeApp.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdehtml/tdehtmlview.cpp')
-rw-r--r-- | tdehtml/tdehtmlview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tdehtml/tdehtmlview.cpp b/tdehtml/tdehtmlview.cpp index bbc45da95..8aac65a36 100644 --- a/tdehtml/tdehtmlview.cpp +++ b/tdehtml/tdehtmlview.cpp @@ -493,7 +493,7 @@ TDEHTMLView::TDEHTMLView( TDEHTMLPart *part, TQWidget *parent, const char *name) d = new TDEHTMLViewPrivate; TQScrollView::setVScrollBarMode(d->vmode); TQScrollView::setHScrollBarMode(d->hmode); - connect(kapp, TQ_SIGNAL(tdedisplayPaletteChanged()), this, TQ_SLOT(slotPaletteChanged())); + connect(tdeApp, TQ_SIGNAL(tdedisplayPaletteChanged()), this, TQ_SLOT(slotPaletteChanged())); connect(this, TQ_SIGNAL(contentsMoving(int, int)), this, TQ_SLOT(slotScrollBarMoved())); // initialize QScrollView @@ -4574,12 +4574,12 @@ void TDEHTMLView::scrollTick() { d->dy -= ddy; // TQScrollView::setContentsPos( contentsX() + ddx, contentsY() + ddy); - kapp->syncX(); + tdeApp->syncX(); TQScrollView::scrollBy(ddx, ddy); // Unaccelerated X can get seriously overloaded by scrolling and for some reason // will send KeyPress events only infrequently. This should help to reduce // the load. - kapp->syncX(); + tdeApp->syncX(); } void TDEHTMLView::startScrolling() |