summaryrefslogtreecommitdiffstats
path: root/src/kvilib
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:07:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 22:47:48 +0900
commit9577f4de07539fb2464a1499d45b25993c5cea46 (patch)
tree61e334870fb8bbdb96a67452e974b13e09cb0038 /src/kvilib
parent87c77000cf1838c2695e7944d4f205ffb9fb44b4 (diff)
downloadkvirc-9577f4de07539fb2464a1499d45b25993c5cea46.tar.gz
kvirc-9577f4de07539fb2464a1499d45b25993c5cea46.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kvilib')
-rw-r--r--src/kvilib/irc/kvi_mirccntrl.h4
-rw-r--r--src/kvilib/tal/kvi_tal_grid_qt3.h2
-rw-r--r--src/kvilib/tal/kvi_tal_groupbox_qt3.h4
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() {};
};