aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
authorJesse Smith <jsmith@resonatingmedia.com>2015-11-30 11:49:04 -0400
committerJesse Smith <jsmith@resonatingmedia.com>2015-11-30 11:49:04 -0400
commitf99348c7a676c7c4db52a3932137e216917148f0 (patch)
tree2c42859be157c73d7783140c2ca58987c5b28e10 /lumina-desktop
parentAdd a couple process checks into the WM restart procedures, and add a log mes... (diff)
downloadlumina-f99348c7a676c7c4db52a3932137e216917148f0.tar.gz
lumina-f99348c7a676c7c4db52a3932137e216917148f0.tar.bz2
lumina-f99348c7a676c7c4db52a3932137e216917148f0.zip
Fixed minor type in lumina-desktop/WMProcess.cpp that was preventing compiling with GCC.
Diffstat (limited to 'lumina-desktop')
-rw-r--r--lumina-desktop/WMProcess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/WMProcess.cpp b/lumina-desktop/WMProcess.cpp
index 3a099c06..e704091a 100644
--- a/lumina-desktop/WMProcess.cpp
+++ b/lumina-desktop/WMProcess.cpp
@@ -121,7 +121,7 @@ void WMProcess::processFinished(int exitcode, QProcess::ExitStatus status){
emit WMShutdown();
}else{
//restart the Window manager
- qDebug() << "WM Stopped Unexpectedly: Restarting it..."
+ qDebug() << "WM Stopped Unexpectedly: Restarting it...";
this->startWM();
}
}else{
bgstack15