aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-05-16 03:54:25 -0400
committerKen Moore <ken@ixsystems.com>2018-05-16 03:54:25 -0400
commit0ac1591f4727a5770dd25ae1decc9a141993862c (patch)
treea896d72d23ca05fcfe1b7829b3cc9e5ca729cda7 /src-qt5/core/lumina-desktop-unified/LSession.cpp
parentCouple more gitignore changes which I missed in the last commit. (diff)
downloadlumina-0ac1591f4727a5770dd25ae1decc9a141993862c.tar.gz
lumina-0ac1591f4727a5770dd25ae1decc9a141993862c.tar.bz2
lumina-0ac1591f4727a5770dd25ae1decc9a141993862c.zip
Get the Clock plugin all finished up.
Now the text should format properly, and we have a single-instanced calendar menu popup for all clock plugins now.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/LSession.cpp')
-rw-r--r--src-qt5/core/lumina-desktop-unified/LSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/LSession.cpp b/src-qt5/core/lumina-desktop-unified/LSession.cpp
index 5f2dc5ab..a17ed060 100644
--- a/src-qt5/core/lumina-desktop-unified/LSession.cpp
+++ b/src-qt5/core/lumina-desktop-unified/LSession.cpp
@@ -88,7 +88,7 @@ LSession::~LSession(){
void LSession::setupSession(){
BootSplash splash;
splash.showScreen("init");
- qDebug() << "Initializing Session:" << QDateTime::currentDateTime().toString( Qt::SystemLocaleShortDate);;
+ qDebug() << "Setting up session:" << QDateTime::currentDateTime().toString( Qt::SystemLocaleShortDate);;
if(QFile::exists("/tmp/.luminastopping")){ QFile::remove("/tmp/.luminastopping"); }
QTime* timer = 0;
if(DEBUG){ timer = new QTime(); timer->start(); qDebug() << " - Init srand:" << timer->elapsed();}
bgstack15