summaryrefslogtreecommitdiffstats
path: root/amor
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:16:35 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:16:35 -0600
commit5ccc96d57f1fa2db966f788a732062e032be2afb (patch)
tree059166d0376e4efd467f7b014eee032abb6f4aa5 /amor
parent8e797478eef9f8123acc8cbd634ae172c2205073 (diff)
downloadtdetoys-5ccc96d57f1fa2db966f788a732062e032be2afb.tar.gz
tdetoys-5ccc96d57f1fa2db966f788a732062e032be2afb.zip
Rename additional global functions and variables for tqt3
Diffstat (limited to 'amor')
-rw-r--r--amor/amor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/amor/amor.cpp b/amor/amor.cpp
index 7e8202b..71546da 100644
--- a/amor/amor.cpp
+++ b/amor/amor.cpp
@@ -569,7 +569,7 @@ void Amor::restack()
// We must use the target window's parent as our sibling.
// Is there a faster way to get parent window than XQueryTree?
- if (XQueryTree(qt_xdisplay(), sibling, &dw, &parent, &wins, &nwins))
+ if (XQueryTree(tqt_xdisplay(), sibling, &dw, &parent, &wins, &nwins))
{
if (nwins)
{
@@ -586,7 +586,7 @@ void Amor::restack()
XWindowChanges values;
values.sibling = sibling;
values.stack_mode = Above;
- XConfigureWindow(qt_xdisplay(), mAmor->winId(), CWSibling | CWStackMode,
+ XConfigureWindow(tqt_xdisplay(), mAmor->winId(), CWSibling | CWStackMode,
&values);
}