summaryrefslogtreecommitdiffstats
path: root/knotes/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:16:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:16:16 -0600
commitc2ff0b2158a151e4bfdccdf5dd96a22c5ddd95b6 (patch)
treeb1fe5fed45628a2211f61b95296de96437a049e8 /knotes/main.cpp
parent17e2ed52dbf8fac39a04331da02b9572e9e2e304 (diff)
downloadtdepim-c2ff0b2158a151e4bfdccdf5dd96a22c5ddd95b6.tar.gz
tdepim-c2ff0b2158a151e4bfdccdf5dd96a22c5ddd95b6.zip
Rename additional global functions and variables for tqt3
Diffstat (limited to 'knotes/main.cpp')
-rw-r--r--knotes/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knotes/main.cpp b/knotes/main.cpp
index bf38e4c7..a14d52ac 100644
--- a/knotes/main.cpp
+++ b/knotes/main.cpp
@@ -43,11 +43,11 @@ void remove_sm_from_client_leader()
Atom atoms[ 2 ];
char *atom_names[ 2 ] = { (char*)"WM_CLIENT_LEADER", (char*)"SM_CLIENT_ID" };
- XInternAtoms( qt_xdisplay(), atom_names, 2, False, atoms );
+ XInternAtoms( tqt_xdisplay(), atom_names, 2, False, atoms );
TQWidget w;
KXErrorHandler handler; // ignore X errors
- status = XGetWindowProperty( qt_xdisplay(), w.winId(), atoms[ 0 ], 0, 10000,
+ status = XGetWindowProperty( tqt_xdisplay(), w.winId(), atoms[ 0 ], 0, 10000,
FALSE, XA_WINDOW, &type, &format,
&nitems, &extra, &data );
@@ -56,7 +56,7 @@ void remove_sm_from_client_leader()
if (data && nitems > 0)
{
Window leader = *((Window*) data);
- XDeleteProperty( qt_xdisplay(), leader, atoms[ 1 ] );
+ XDeleteProperty( tqt_xdisplay(), leader, atoms[ 1 ] );
}
XFree(data);
}