diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:07:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 23:06:51 +0900 |
commit | 945085d2d242018111b8bb1e1082ebe2021b720b (patch) | |
tree | 9162dfce141628f7e5d7ffc311dc0df860a6b29b /src/kvilib | |
parent | 776d38202f9be592e1b6b99dbc81a64ee584c5c0 (diff) | |
download | kvirc-945085d2d242018111b8bb1e1082ebe2021b720b.tar.gz kvirc-945085d2d242018111b8bb1e1082ebe2021b720b.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 9577f4de07539fb2464a1499d45b25993c5cea46)
Diffstat (limited to 'src/kvilib')
-rw-r--r-- | src/kvilib/irc/kvi_mirccntrl.h | 4 | ||||
-rw-r--r-- | src/kvilib/tal/kvi_tal_grid_qt3.h | 2 | ||||
-rw-r--r-- | src/kvilib/tal/kvi_tal_groupbox_qt3.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/kvilib/irc/kvi_mirccntrl.h b/src/kvilib/irc/kvi_mirccntrl.h index b02165d0..2961e34a 100644 --- a/src/kvilib/irc/kvi_mirccntrl.h +++ b/src/kvilib/irc/kvi_mirccntrl.h @@ -91,9 +91,9 @@ // 006 ACK Acknowledge (Not so good, but can be used as last resource) // 007 BEL Bell ( Recognized as bell by terminals and IRCII ) (Used also by some IRC servers) // 008 BS Backspace (Should not be assigned: terminal control) -// 009 HT Qt::Horizontal tabulation (Should not be assigned: terminal control) +// 009 HT Horizontal tabulation (Should not be assigned: terminal control) // 010 LF Line feed (Should not be assigned: terminal control) -// 011 VT Qt::Vertical tabulation (Should not be assigned: terminal control) +// 011 VT Vertical tabulation (Should not be assigned: terminal control) // 012 FF Form feed (Should not be assigned: terminal control) // 013 CR Carriage return (Should not be assigned: terminal control) // 014 SO Shift out (Should not be assigned: terminal control) diff --git a/src/kvilib/tal/kvi_tal_grid_qt3.h b/src/kvilib/tal/kvi_tal_grid_qt3.h index a6ca1126..842e5dfc 100644 --- a/src/kvilib/tal/kvi_tal_grid_qt3.h +++ b/src/kvilib/tal/kvi_tal_grid_qt3.h @@ -32,7 +32,7 @@ class KVILIB_API KviTalGrid : public TQGrid TQ_OBJECT public: - KviTalGrid(int n,Qt::Orientation orient,TQWidget * pParent = 0) + KviTalGrid(int n,TQt::Orientation orient,TQWidget * pParent = 0) : TQGrid(n,orient,pParent) {}; ~KviTalGrid() {}; }; diff --git a/src/kvilib/tal/kvi_tal_groupbox_qt3.h b/src/kvilib/tal/kvi_tal_groupbox_qt3.h index 0644bd39..e2162d93 100644 --- a/src/kvilib/tal/kvi_tal_groupbox_qt3.h +++ b/src/kvilib/tal/kvi_tal_groupbox_qt3.h @@ -36,9 +36,9 @@ public: : TQGroupBox(parent) {}; KviTalGroupBox(const TQString & title,TQWidget * parent = 0) : TQGroupBox(title,parent) {}; - KviTalGroupBox(int strips,Qt::Orientation orientation,TQWidget * parent = 0) + KviTalGroupBox(int strips,TQt::Orientation orientation,TQWidget * parent = 0) : TQGroupBox(strips,orientation,parent) {}; - KviTalGroupBox(int strips,Qt::Orientation orientation,const TQString & title,TQWidget * parent = 0) + KviTalGroupBox(int strips,TQt::Orientation orientation,const TQString & title,TQWidget * parent = 0) : TQGroupBox(strips,orientation,title,parent) {}; ~KviTalGroupBox() {}; }; |