aboutsummaryrefslogtreecommitdiff
path: root/libLumina
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-25 15:57:18 -0400
committerKen Moore <ken@pcbsd.org>2015-04-25 15:57:18 -0400
commit3f3300e746224a7768cee4b3e7b7634a3d033f39 (patch)
tree0f5f41feec6167e0af1e0d680f1c9fbcf2abb835 /libLumina
parentFix another bug with the new panel/window activation switcher: do *not* re-ac... (diff)
downloadlumina-3f3300e746224a7768cee4b3e7b7634a3d033f39.tar.gz
lumina-3f3300e746224a7768cee4b3e7b7634a3d033f39.tar.bz2
lumina-3f3300e746224a7768cee4b3e7b7634a3d033f39.zip
Add (but disable by default) some additional debuggin information. Also turn off the debugging for the session/desktop/panel classes by default.
Diffstat (limited to 'libLumina')
-rw-r--r--libLumina/LuminaX11.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libLumina/LuminaX11.cpp b/libLumina/LuminaX11.cpp
index 89c138ca..429a8ba5 100644
--- a/libLumina/LuminaX11.cpp
+++ b/libLumina/LuminaX11.cpp
@@ -716,11 +716,11 @@ WId LX11::startSystemTray(int screen){
//Get the appropriate atom for this screen
QString str = QString("_NET_SYSTEM_TRAY_S%1").arg(QString::number(screen));
- qDebug() << "Default Screen Atom Name:" << str;
+ //qDebug() << "Default Screen Atom Name:" << str;
Atom _NET_SYSTEM_TRAY_S = XInternAtom(disp,str.toLatin1(),false);
//Make sure that there is no other system tray running
if(XGetSelectionOwner(disp, _NET_SYSTEM_TRAY_S) != None){
- qWarning() << "An alternate system tray is currently in use";
+ qWarning() << " - An alternate system tray is currently in use";
return 0;
}
//Create a simple window to register as the tray (not visible - just off the screen)
@@ -729,7 +729,7 @@ WId LX11::startSystemTray(int screen){
XSetSelectionOwner(disp, _NET_SYSTEM_TRAY_S, LuminaSessionTrayID, CurrentTime);
//Make sure that it was registered properly
if(XGetSelectionOwner(disp, _NET_SYSTEM_TRAY_S) != LuminaSessionTrayID){
- qWarning() << "Could not register the system tray";
+ qWarning() << " - Could not register the system tray";
XDestroyWindow(disp, LuminaSessionTrayID);
return 0;
}
bgstack15