diff options
Diffstat (limited to 'src/systemtray.cpp')
-rw-r--r-- | src/systemtray.cpp | 4 |
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; |