diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/nsplugin/src/qnp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/nsplugin/src/qnp.cpp b/extensions/nsplugin/src/qnp.cpp index d60bc8f4e..492da1808 100644 --- a/extensions/nsplugin/src/qnp.cpp +++ b/extensions/nsplugin/src/qnp.cpp @@ -1680,7 +1680,7 @@ void TQNPXtPrivate::unhook() appContext = ownContext = 0; } -extern bool qt_try_modal( TQWidget *, XEvent * ); // defined in qapplication_x11.cpp +extern bool tqt_try_modal( TQWidget *, XEvent * ); // defined in qapplication_x11.cpp Boolean qnpxt_event_dispatcher( XEvent *event ) { static bool grabbed = FALSE; @@ -1786,7 +1786,7 @@ Boolean qnpxt_event_dispatcher( XEvent *event ) if ( TQApplication::activeModalWidget() ) { if ( qnpxt ) { // send event through TQt modality handling... - if ( !qt_try_modal( qnpxt, event ) ) { + if ( !tqt_try_modal( qnpxt, event ) ) { // tqDebug( "TQt: active modal widget discarded event" ); return True; } |