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