diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-04 11:53:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-04 13:56:43 +0900 |
commit | 0582c90a9ed4b965629267713f51c0da7c38b39d (patch) | |
tree | cae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/html/porting.html | |
parent | 39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff) | |
download | tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.zip |
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/porting.html')
-rw-r--r-- | doc/html/porting.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/porting.html b/doc/html/porting.html index 56ba55585..1a0363153 100644 --- a/doc/html/porting.html +++ b/doc/html/porting.html @@ -184,7 +184,7 @@ the top of the file giving the error. <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 ntqnamespace.h. If you get compilation +special <a href="ntqt.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: @@ -358,9 +358,9 @@ new code. <li> <a href="tqmainwindow.html#setToolBarsMovable">TQMainWindow::setToolBarsMovable</a>( bool ) <li> <a href="tqmainwindow.html#toolBarPositionChanged">TQMainWindow::toolBarPositionChanged</a>( <a href="tqtoolbar.html">TQToolBar</a> *) <li> <a href="tqmainwindow.html#toolBarsMovable">TQMainWindow::toolBarsMovable</a>() const -<li> <a href="ntqmessagebox.html#message">TQMessageBox::message</a>( const <a href="tqstring.html">TQString</a> & caption, const TQString & text, const TQString & buttonText = <a href="tqstring.html#TQString-null">TQString::null</a>, <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *= 0 ) -<li> <a href="ntqmessagebox.html#query">TQMessageBox::query</a>( const TQString & caption, const TQString & text, const TQString & yesButtonText = TQString::null, const TQString & noButtonText = TQString::null, TQWidget *parent = 0, const char *= 0 ) -<li> <a href="ntqmessagebox.html#standardIcon">TQMessageBox::standardIcon</a>( Icon icon, GUIStyle style ) +<li> <a href="tqmessagebox.html#message">TQMessageBox::message</a>( const <a href="tqstring.html">TQString</a> & caption, const TQString & text, const TQString & buttonText = <a href="tqstring.html#TQString-null">TQString::null</a>, <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *= 0 ) +<li> <a href="tqmessagebox.html#query">TQMessageBox::query</a>( const TQString & caption, const TQString & text, const TQString & yesButtonText = TQString::null, const TQString & noButtonText = TQString::null, TQWidget *parent = 0, const char *= 0 ) +<li> <a href="tqmessagebox.html#standardIcon">TQMessageBox::standardIcon</a>( Icon icon, GUIStyle style ) <li> <a href="tqregexp.html#match">TQRegExp::match</a>( const TQString & str, int index = 0, int *len = 0, bool indexIsStart = TRUE ) const <li> <a href="tqscrollview.html#childIsVisible">TQScrollView::childIsVisible</a>( TQWidget *child ) <li> <a href="tqscrollview.html#showChild">TQScrollView::showChild</a>( TQWidget *child, bool show = TRUE ) @@ -479,9 +479,9 @@ for the <tt>echo</tt> parameter. <a name="13"></a><p> The paintBranches() function in TQt 2.x had a GUIStyle parameter; this has been dropped for TQt 3.x since GUI style is handled by the new style engine (See <a href="tqstyle.html">TQStyle</a>.) -<p> <h2> <a href="qmoveevent.html">TQMoveEvent</a> +<p> <h2> <a href="tqmoveevent.html">TQMoveEvent</a> </h2> -<a name="14"></a><p> In TQt 2.x, the function <a href="qmoveevent.html#pos">TQMoveEvent::pos</a>() returned the position of the +<a name="14"></a><p> In TQt 2.x, the function <a href="tqmoveevent.html#pos">TQMoveEvent::pos</a>() returned the position of the widget in its parent widget, including the window frame. In TQt 3.0, it returns the new position of the widget, excluding window frame for top level widgets. |