summaryrefslogtreecommitdiffstats
path: root/twin/tabbox.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-23 10:49:13 +0900
committerMichele Calgaro <[email protected]>2023-11-23 10:49:13 +0900
commit81ad1f9e3c9d494edc38a7aad96fdcab9d44a795 (patch)
treec904c597ffd00ee1105985088f3d98c818cc12d1 /twin/tabbox.cpp
parent100f977221b7319815eb9617f56a067cb0383853 (diff)
downloadtdebase-81ad1f9e3c9d494edc38a7aad96fdcab9d44a795.tar.gz
tdebase-81ad1f9e3c9d494edc38a7aad96fdcab9d44a795.zip
Replaced time related '#define' with actual strings
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'twin/tabbox.cpp')
-rw-r--r--twin/tabbox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/twin/tabbox.cpp b/twin/tabbox.cpp
index 1cf0fb8c2..bec7cce97 100644
--- a/twin/tabbox.cpp
+++ b/twin/tabbox.cpp
@@ -708,7 +708,7 @@ void TabBox::delayedShow()
void TabBox::handleMouseEvent( XEvent* e )
{
- XAllowEvents( tqt_xdisplay(), AsyncPointer, GET_QT_X_TIME() );
+ XAllowEvents( tqt_xdisplay(), AsyncPointer, get_tqt_x_time() );
if( e->type != ButtonPress )
return;
TQPoint pos( e->xbutton.x_root, e->xbutton.y_root );
@@ -866,7 +866,7 @@ void Workspace::slotWalkThroughWindows()
return;
if ( options->altTabStyle == Options::CDE || !options->focusPolicyIsReasonable())
{
- //XUngrabKeyboard(tqt_xdisplay(), GET_QT_X_TIME()); // need that because of accelerator raw mode
+ //XUngrabKeyboard(tqt_xdisplay(), get_tqt_x_time()); // need that because of accelerator raw mode
// CDE style raise / lower
CDEWalkThroughWindows( true );
}
@@ -1360,7 +1360,7 @@ Client* Workspace::previousStaticClient( Client* c ) const
bool Workspace::establishTabBoxGrab()
{
if( XGrabKeyboard( tqt_xdisplay(), root, FALSE,
- GrabModeAsync, GrabModeAsync, GET_QT_X_TIME()) != GrabSuccess )
+ GrabModeAsync, GrabModeAsync, get_tqt_x_time()) != GrabSuccess )
return false;
// Don't try to establish a global mouse grab using XGrabPointer, as that would prevent
// using Alt+Tab while DND (#44972). However force passive grabs on all windows
@@ -1376,7 +1376,7 @@ bool Workspace::establishTabBoxGrab()
void Workspace::removeTabBoxGrab()
{
- XUngrabKeyboard(tqt_xdisplay(), GET_QT_X_TIME());
+ XUngrabKeyboard(tqt_xdisplay(), get_tqt_x_time());
assert( forced_global_mouse_grab );
forced_global_mouse_grab = false;
if( active_client != NULL )