summaryrefslogtreecommitdiffstats
path: root/doc/html/porting.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-09-09 14:57:42 +0900
committerMichele Calgaro <[email protected]>2024-09-12 18:58:18 +0900
commit6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch)
tree4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/html/porting.html
parent0582c90a9ed4b965629267713f51c0da7c38b39d (diff)
downloadtqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.tar.gz
tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.zip
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/porting.html')
-rw-r--r--doc/html/porting.html36
1 files changed, 18 insertions, 18 deletions
diff --git a/doc/html/porting.html b/doc/html/porting.html
index 1a0363153..b2c7e9977 100644
--- a/doc/html/porting.html
+++ b/doc/html/porting.html
@@ -183,28 +183,28 @@ the top of the file giving the error.
</h2>
<a name="3"></a><p> TQt 3.x is namespace clean. A few global identifiers that had been
left in TQt 2.x have been discarded.
-<p> Enumeration <a href="ntqt.html#CursorShape-enum">TQt::CursorShape</a> and its values are now part of the
-special <a href="ntqt.html">TQt</a> class defined in tqnamespace.h. If you get compilation
+<p> Enumeration <a href="tqt.html#CursorShape-enum">TQt::CursorShape</a> and its values are now part of the
+special <a href="tqt.html">TQt</a> class defined in tqnamespace.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:
<p> <ul>
-<li> <tt>TQCursorShape</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::CursorShape</a>
-<li> <tt>ArrowCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::ArrowCursor</a>
-<li> <tt>UpArrowCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::UpArrowCursor</a>
-<li> <tt>CrossCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::CrossCursor</a>
-<li> <tt>WaitCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::WaitCursor</a>
-<li> <tt>IbeamCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::IbeamCursor</a>
-<li> <tt>SizeVerCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::SizeVerCursor</a>
-<li> <tt>SizeHorCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::SizeHorCursor</a>
-<li> <tt>SizeBDiagCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::SizeBDiagCursor</a>
-<li> <tt>SizeFDiagCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::SizeFDiagCursor</a>
-<li> <tt>SizeAllCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::SizeAllCursor</a>
-<li> <tt>BlankCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::BlankCursor</a>
-<li> <tt>SplitVCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::SplitVCursor</a>
-<li> <tt>SplitHCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::SplitHCursor</a>
-<li> <tt>PointingHandCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::PointingHandCursor</a>
-<li> <tt>BitmapCursor</tt> becomes <a href="ntqt.html#CursorShape-enum">TQt::BitmapCursor</a>
+<li> <tt>TQCursorShape</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::CursorShape</a>
+<li> <tt>ArrowCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::ArrowCursor</a>
+<li> <tt>UpArrowCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::UpArrowCursor</a>
+<li> <tt>CrossCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::CrossCursor</a>
+<li> <tt>WaitCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::WaitCursor</a>
+<li> <tt>IbeamCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::IbeamCursor</a>
+<li> <tt>SizeVerCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::SizeVerCursor</a>
+<li> <tt>SizeHorCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::SizeHorCursor</a>
+<li> <tt>SizeBDiagCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::SizeBDiagCursor</a>
+<li> <tt>SizeFDiagCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::SizeFDiagCursor</a>
+<li> <tt>SizeAllCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::SizeAllCursor</a>
+<li> <tt>BlankCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::BlankCursor</a>
+<li> <tt>SplitVCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::SplitVCursor</a>
+<li> <tt>SplitHCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::SplitHCursor</a>
+<li> <tt>PointingHandCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::PointingHandCursor</a>
+<li> <tt>BitmapCursor</tt> becomes <a href="tqt.html#CursorShape-enum">TQt::BitmapCursor</a>
</ul>
<p> The names of some debugging macro variables have been changed. We have
tried not to break source compatibility as much as possible. If you observe