diff options
author | Michele Calgaro <[email protected]> | 2023-11-06 11:29:21 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-07 09:55:39 +0900 |
commit | 65a06ba9047c5b3bbe201d2e453f30868bd3fad3 (patch) | |
tree | 4ad717fdb26890dbcd584eec0e6d4e5019689d58 /ksysv/kscroller.cpp | |
parent | 52bc9d0886f26f484d140b3244136f43c8ae07ea (diff) | |
download | tdeadmin-65a06ba9047c5b3bbe201d2e453f30868bd3fad3.tar.gz tdeadmin-65a06ba9047c5b3bbe201d2e453f30868bd3fad3.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ksysv/kscroller.cpp')
-rw-r--r-- | ksysv/kscroller.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksysv/kscroller.cpp b/ksysv/kscroller.cpp index 0c18b25..87d8b71 100644 --- a/ksysv/kscroller.cpp +++ b/ksysv/kscroller.cpp @@ -26,8 +26,8 @@ public: KScroller::KScroller (TQWidget* parent, const char* name) : TQFrame (parent, name), d (new KScrollerPrivate()), - mVertical (new TQScrollBar (Qt::Vertical, this)), - mHorizontal (new TQScrollBar (Qt::Horizontal, this)), + mVertical (new TQScrollBar (TQt::Vertical, this)), + mHorizontal (new TQScrollBar (TQt::Horizontal, this)), mCornerWidget (new TQWidget (this)), mContent (0L), mVerticalOld (0), |