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:47:08 +0900
commit541b90072523725854cb5d61f1bdce50dbcc6b31 (patch)
tree1452a8b6fbf1e91be0d2e5af7edf31b102b01fc6 /doc/porting3.doc
parentd73937a9f779e2aafa6c392f94c9c29aa32b78fd (diff)
downloadtqt3-541b90072523725854cb5d61f1bdce50dbcc6b31.tar.gz
tqt3-541b90072523725854cb5d61f1bdce50dbcc6b31.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 089d5266f0fbf9be6612e9c5f92a3f008f29241c)
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 e6e77225..9892096e 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