diff options
Diffstat (limited to 'doc/html/porting.html')
-rw-r--r-- | doc/html/porting.html | 36 |
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 |