diff options
Diffstat (limited to 'src/svnfrontend/keystatus.cpp')
-rw-r--r-- | src/svnfrontend/keystatus.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnfrontend/keystatus.cpp b/src/svnfrontend/keystatus.cpp index 5e6a324..d3a3c54 100644 --- a/src/svnfrontend/keystatus.cpp +++ b/src/svnfrontend/keystatus.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ #include "keystatus.h" -#include <qwidget.h> +#include <tqwidget.h> #include <X11/Xlib.h> void KeyState::keystate(int*root_x,int*root_y,int*win_x,int*win_y,unsigned int*keybstate) @@ -31,9 +31,9 @@ void KeyState::keystate(int*root_x,int*root_y,int*win_x,int*win_y,unsigned int*k root_x, root_y, win_x, win_y, &kstate); *keybstate=0; if (kstate&ControlMask) { - *keybstate|=Qt::ControlButton; + *keybstate|=TQt::ControlButton; } if (kstate&ShiftMask) { - *keybstate|=Qt::ShiftButton; + *keybstate|=TQt::ShiftButton; } } |