summaryrefslogtreecommitdiffstats
path: root/doc/porting3.doc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-09-04 11:53:23 +0900
committerMichele Calgaro <[email protected]>2024-09-04 13:56:43 +0900
commit0582c90a9ed4b965629267713f51c0da7c38b39d (patch)
treecae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/porting3.doc
parent39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff)
downloadtqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz
tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.zip
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/porting3.doc')
-rw-r--r--doc/porting3.doc12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/porting3.doc b/doc/porting3.doc
index 7df520570..b65cbc4f7 100644
--- a/doc/porting3.doc
+++ b/doc/porting3.doc
@@ -126,7 +126,7 @@ Qt 3.x is namespace clean. A few global identifiers that had been
left in TQt 2.x have been discarded.
Enumeration \l TQt::CursorShape and its values are now part of the
-special \c TQt class defined in ntqnamespace.h. If you get compilation
+special \c TQt 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:
@@ -311,9 +311,9 @@ new code.
\i TQMainWindow::setToolBarsMovable( bool )
\i TQMainWindow::toolBarPositionChanged( TQToolBar *)
\i TQMainWindow::toolBarsMovable() const
-\i QMessageBox::message( const TQString \& caption, const TQString \& text, const TQString \& buttonText = TQString::null, TQWidget *parent = 0, const char *= 0 )
-\i QMessageBox::query( const TQString \& caption, const TQString \& text, const TQString \& yesButtonText = TQString::null, const TQString \& noButtonText = TQString::null, TQWidget *parent = 0, const char *= 0 )
-\i QMessageBox::standardIcon( Icon icon, GUIStyle style )
+\i TQMessageBox::message( const TQString \& caption, const TQString \& text, const TQString \& buttonText = TQString::null, TQWidget *parent = 0, const char *= 0 )
+\i TQMessageBox::query( const TQString \& caption, const TQString \& text, const TQString \& yesButtonText = TQString::null, const TQString \& noButtonText = TQString::null, TQWidget *parent = 0, const char *= 0 )
+\i TQMessageBox::standardIcon( Icon icon, GUIStyle style )
\i TQRegExp::match( const TQString \& str, int index = 0, int *len = 0, bool indexIsStart = TRUE ) const
\i TQScrollView::childIsVisible( TQWidget *child )
\i TQScrollView::showChild( TQWidget *child, bool show = TRUE )
@@ -453,9 +453,9 @@ 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 \l TQStyle.)
-\section1 QMoveEvent
+\section1 TQMoveEvent
-In TQt 2.x, the function QMoveEvent::pos() returned the position of the
+In TQt 2.x, the function TQMoveEvent::pos() 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.