summaryrefslogtreecommitdiffstats
path: root/src/systemtray.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:04:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:04:30 -0600
commitbcf4e9197f2fa5cfa5b65e74ab714b894836f26d (patch)
tree730ced31ce2ca1bc657052a89eb1d350618915e7 /src/systemtray.cpp
parentc3bdfdc9307844c8e93c2c1e7c4a1dc8b050f459 (diff)
downloadbasket-bcf4e9197f2fa5cfa5b65e74ab714b894836f26d.tar.gz
basket-bcf4e9197f2fa5cfa5b65e74ab714b894836f26d.zip
Rename additional global functions and variables for tqt3
Diffstat (limited to 'src/systemtray.cpp')
-rw-r--r--src/systemtray.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemtray.cpp b/src/systemtray.cpp
index fdb7f40..fa9fae2 100644
--- a/src/systemtray.cpp
+++ b/src/systemtray.cpp
@@ -95,7 +95,7 @@ void KSystemTray2::displayCloseMessage(TQString fileMenu)
// 1. Determine if the user use a system tray area or not:
TQCString screenstr;
- screenstr.setNum(qt_xscreen());
+ screenstr.setNum(tqt_xscreen());
TQCString trayatom = "_NET_SYSTEM_TRAY_S" + screenstr;
bool useSystray = (KSelectionWatcher(trayatom.data()).owner() != 0L);
@@ -153,7 +153,7 @@ void KSystemTray2::displayCloseMessage(TQString fileMenu)
if (y + h > desktopHeight) y = desktopHeight - h;
// Grab the desktop and draw a circle arround the icon:
- TQPixmap shot = TQPixmap::grabWindow(qt_xrootwin(), x, y, w, h);
+ TQPixmap shot = TQPixmap::grabWindow(tqt_xrootwin(), x, y, w, h);
TQPainter painter(&shot);
const int CIRCLE_MARGINS = 6;
const int CIRCLE_WIDTH = 3;