diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-06 11:29:21 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-07 09:55:39 +0900 |
commit | 65a06ba9047c5b3bbe201d2e453f30868bd3fad3 (patch) | |
tree | 4ad717fdb26890dbcd584eec0e6d4e5019689d58 /ksysv | |
parent | 52bc9d0886f26f484d140b3244136f43c8ae07ea (diff) | |
download | tdeadmin-65a06ba9047c5b3bbe201d2e453f30868bd3fad3.tar.gz tdeadmin-65a06ba9047c5b3bbe201d2e453f30868bd3fad3.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksysv')
-rw-r--r-- | ksysv/OldView.cpp | 2 | ||||
-rw-r--r-- | ksysv/Properties.cpp | 2 | ||||
-rw-r--r-- | ksysv/kscroller.cpp | 4 | ||||
-rw-r--r-- | ksysv/ksvdraglist.cpp | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/ksysv/OldView.cpp b/ksysv/OldView.cpp index 37dd2d4..e24b422 100644 --- a/ksysv/OldView.cpp +++ b/ksysv/OldView.cpp @@ -73,7 +73,7 @@ #include "TopWidget.h" KSVContent::KSVContent (TDEPopupMenu* openWithMenu, KSVTopLevel* parent, const char* name) - : TQSplitter (Qt::Vertical, parent, name), + : TQSplitter (TQt::Vertical, parent, name), startRL (new KSVDragList*[ksv::runlevelNumber]), stopRL (new KSVDragList*[ksv::runlevelNumber]), conf(KSVConfig::self()), diff --git a/ksysv/Properties.cpp b/ksysv/Properties.cpp index 6b7b378..96e0ebf 100644 --- a/ksysv/Properties.cpp +++ b/ksysv/Properties.cpp @@ -54,7 +54,7 @@ KSVServicesPage::KSVServicesPage (KSVData& data, KPropertiesDialog* props) ksv::getServiceDescription (data.filename(), text); mDesc = new TQTextView (TQString("<p>%1</p>").arg (text), TQString(), desc); - TQButtonGroup* buttons = new TQButtonGroup (1,Qt::Vertical, i18n ("Actions"), mPage); + TQButtonGroup* buttons = new TQButtonGroup (1,TQt::Vertical, i18n ("Actions"), mPage); TQPushButton* b = new TQPushButton (i18n ("&Edit"), buttons); connect (b, TQT_SIGNAL (clicked()), props, TQT_SLOT (doEdit())); 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), diff --git a/ksysv/ksvdraglist.cpp b/ksysv/ksvdraglist.cpp index 6b3c41f..e5798ae 100644 --- a/ksysv/ksvdraglist.cpp +++ b/ksysv/ksvdraglist.cpp @@ -229,7 +229,7 @@ TQPixmap KSVItem::paintDragIcon (const TQFont& font, const TQColorGroup&) const label()); TQBrush brush (color0); - brush.setStyle(Qt::Dense5Pattern); + brush.setStyle(TQt::Dense5Pattern); p.fillRect (0, 0, width, height, brush); p.end(); |