diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-06 20:38:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-06 20:38:40 -0600 |
commit | eb1d1e0dec5720ace27395e290b7093cd68b150d (patch) | |
tree | 04a199ef5ea853d86a6f9a44716c0874d41c20f6 /src/kernel/qwidget.cpp | |
parent | ae8aba1e0f17943046e6bfa889b169f7fc41da0d (diff) | |
download | tqt3-eb1d1e0dec5720ace27395e290b7093cd68b150d.tar.gz tqt3-eb1d1e0dec5720ace27395e290b7093cd68b150d.zip |
Automated update from qt3
Diffstat (limited to 'src/kernel/qwidget.cpp')
-rw-r--r-- | src/kernel/qwidget.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kernel/qwidget.cpp b/src/kernel/qwidget.cpp index 5a27310f2..a29036c1f 100644 --- a/src/kernel/qwidget.cpp +++ b/src/kernel/qwidget.cpp @@ -1760,8 +1760,8 @@ void TQWidget::setEnabled( bool enable ) // enforce the windows behavior of clearing the cursor on // disabled widgets - extern void qt_x11_enforce_cursor( TQWidget * w ); // defined in qwidget_x11.cpp - qt_x11_enforce_cursor( this ); + extern void tqt_x11_enforce_cursor( TQWidget * w ); // defined in qwidget_x11.cpp + tqt_x11_enforce_cursor( this ); } #endif #ifdef Q_WS_WIN @@ -4044,9 +4044,9 @@ void TQWidget::show() TQApplication::sendEvent( this, &showEvent ); if ( testWFlags(WShowModal) ) { - // qt_enter_modal *before* show, otherwise the initial + // tqt_enter_modal *before* show, otherwise the initial // stacking might be wrong - qt_enter_modal( this ); + tqt_enter_modal( this ); } // do not show the window directly, but post a show-window request @@ -4096,7 +4096,7 @@ void TQWidget::hide() // destroyed and we lose all access to its parent because we haven't // left modality. (Eg. modal Progress Dialog) if ( testWFlags(WShowModal) ) - qt_leave_modal( this ); + tqt_leave_modal( this ); #if defined(Q_WS_WIN) if ( isTopLevel() && !isPopup() && parentWidget() && isActiveWindow() ) @@ -4940,7 +4940,7 @@ bool TQWidget::event( TQEvent *e ) if ( e->type() == TQEvent::LanguageChange ) { int index = metaObject()->findSlot( "languageChange()", TRUE ); if ( index >= 0 ) - qt_invoke( index, 0 ); + tqt_invoke( index, 0 ); } update(); break; @@ -4985,7 +4985,7 @@ bool TQWidget::event( TQEvent *e ) TQObject *o; while( ( o = it.current() ) != 0 ) { ++it; - TQWidget *w = ::qt_cast<TQWidget*>(o); + TQWidget *w = ::tqt_cast<TQWidget*>(o); if (w && !w->testWFlags(TQt::WShowModal)) TQApplication::sendEvent( o, e ); } |