diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:06:40 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:06:40 -0600 |
commit | 73f9b6918e50b0aa8bea0fb46470e0564b78c1b6 (patch) | |
tree | 926e1316a1c2213c111d24ff305bf949bdad42ca /src/modules/dockwidget | |
parent | e5b670cbaceda728b0e0a92e9783aafe263da96e (diff) | |
download | kvirc-73f9b6918e50b0aa8bea0fb46470e0564b78c1b6.tar.gz kvirc-73f9b6918e50b0aa8bea0fb46470e0564b78c1b6.zip |
Rename additional global functions and variables for tqt3
Diffstat (limited to 'src/modules/dockwidget')
-rw-r--r-- | src/modules/dockwidget/libkvidockwidget_qt3.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/dockwidget/libkvidockwidget_qt3.cpp b/src/modules/dockwidget/libkvidockwidget_qt3.cpp index 169c8279..d286d64c 100644 --- a/src/modules/dockwidget/libkvidockwidget_qt3.cpp +++ b/src/modules/dockwidget/libkvidockwidget_qt3.cpp @@ -302,7 +302,7 @@ static const char * idlemsgs[NIDLEMSGS]= }; #ifdef COMPILE_TDE_SUPPORT - extern Time qt_x_time; + extern Time tqt_x_time; #endif void KviDockWidget::enterEvent( TQEvent* ) @@ -312,15 +312,15 @@ void KviDockWidget::enterEvent( TQEvent* ) { XEvent ev; kvi_memset(&ev, 0, sizeof(ev)); - ev.xfocus.display = qt_xdisplay(); + ev.xfocus.display = tqt_xdisplay(); ev.xfocus.type = XFocusIn; ev.xfocus.window = winId(); ev.xfocus.mode = NotifyNormal; ev.xfocus.detail = NotifyAncestor; - Time time = qt_x_time; - qt_x_time = 1; + Time time = tqt_x_time; + tqt_x_time = 1; g_pApp->x11ProcessEvent( &ev ); - qt_x_time = time; + tqt_x_time = time; } #endif } |