diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:16:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:16:16 -0600 |
commit | c2ff0b2158a151e4bfdccdf5dd96a22c5ddd95b6 (patch) | |
tree | b1fe5fed45628a2211f61b95296de96437a049e8 /knotes/main.cpp | |
parent | 17e2ed52dbf8fac39a04331da02b9572e9e2e304 (diff) | |
download | tdepim-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.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/knotes/main.cpp b/knotes/main.cpp index bf38e4c71..a14d52acf 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); } |