summaryrefslogtreecommitdiffstats
path: root/doc/porting3.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-18 15:42:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-19 23:33:47 +0900
commit089d5266f0fbf9be6612e9c5f92a3f008f29241c (patch)
treee2c5625c37ba83b0848bbb212a45995ceec84139 /doc/porting3.doc
parentd21227053cca7f565e2473a3fc0f8f8a07b298c2 (diff)
downloadtqt3-089d5266f0fbf9be6612e9c5f92a3f008f29241c.tar.gz
tqt3-089d5266f0fbf9be6612e9c5f92a3f008f29241c.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/porting3.doc')
-rw-r--r--doc/porting3.doc34
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/porting3.doc b/doc/porting3.doc
index 1ed878d88..d5b105443 100644
--- a/doc/porting3.doc
+++ b/doc/porting3.doc
@@ -125,29 +125,29 @@ Header files that you might need to add #include directives for include:
Qt 3.x is namespace clean. A few global identifiers that had been
left in TQt 2.x have been discarded.
-Enumeration \l Qt::CursorShape and its values are now part of the
+Enumeration \l TQt::CursorShape and its values are now part of the
special \c TQt class defined in ntqnamespace.h. If you get compilation
errors about these being missing (unlikely, since most of your code will
be in classes that inherit from the TQt namespace class), then apply
the following changes:
\list
-\i \c QCursorShape becomes \c Qt::CursorShape
-\i \c ArrowCursor becomes \c Qt::ArrowCursor
-\i \c UpArrowCursor becomes \c Qt::UpArrowCursor
-\i \c CrossCursor becomes \c Qt::CrossCursor
-\i \c WaitCursor becomes \c Qt::WaitCursor
-\i \c IbeamCursor becomes \c Qt::IbeamCursor
-\i \c SizeVerCursor becomes \c Qt::SizeVerCursor
-\i \c SizeHorCursor becomes \c Qt::SizeHorCursor
-\i \c SizeBDiagCursor becomes \c Qt::SizeBDiagCursor
-\i \c SizeFDiagCursor becomes \c Qt::SizeFDiagCursor
-\i \c SizeAllCursor becomes \c Qt::SizeAllCursor
-\i \c BlankCursor becomes \c Qt::BlankCursor
-\i \c SplitVCursor becomes \c Qt::SplitVCursor
-\i \c SplitHCursor becomes \c Qt::SplitHCursor
-\i \c PointingHandCursor becomes \c Qt::PointingHandCursor
-\i \c BitmapCursor becomes \c Qt::BitmapCursor
+\i \c QCursorShape becomes \c TQt::CursorShape
+\i \c ArrowCursor becomes \c TQt::ArrowCursor
+\i \c UpArrowCursor becomes \c TQt::UpArrowCursor
+\i \c CrossCursor becomes \c TQt::CrossCursor
+\i \c WaitCursor becomes \c TQt::WaitCursor
+\i \c IbeamCursor becomes \c TQt::IbeamCursor
+\i \c SizeVerCursor becomes \c TQt::SizeVerCursor
+\i \c SizeHorCursor becomes \c TQt::SizeHorCursor
+\i \c SizeBDiagCursor becomes \c TQt::SizeBDiagCursor
+\i \c SizeFDiagCursor becomes \c TQt::SizeFDiagCursor
+\i \c SizeAllCursor becomes \c TQt::SizeAllCursor
+\i \c BlankCursor becomes \c TQt::BlankCursor
+\i \c SplitVCursor becomes \c TQt::SplitVCursor
+\i \c SplitHCursor becomes \c TQt::SplitHCursor
+\i \c PointingHandCursor becomes \c TQt::PointingHandCursor
+\i \c BitmapCursor becomes \c TQt::BitmapCursor
\endlist
The names of some debugging macro variables have been changed. We have