aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src-qt5/core/lumina-desktop/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/lumina-desktop/main.cpp b/src-qt5/core/lumina-desktop/main.cpp
index 826d697c..c8a51462 100644
--- a/src-qt5/core/lumina-desktop/main.cpp
+++ b/src-qt5/core/lumina-desktop/main.cpp
@@ -84,8 +84,8 @@ int main(int argc, char ** argv)
return 787; //return special restart code
}*/
//Setup the log file
- QTime *timer=0;
- if(DEBUG){ timer = new QTime(); timer->start(); }
+ QElapsedTimer *timer=0;
+ if(DEBUG){ timer = new QElapsedTimer(); timer->start(); }
if(DEBUG){ qDebug() << "Session Setup:" << timer->elapsed(); }
a.setupSession();
if(DEBUG){ qDebug() << "Exec Time:" << timer->elapsed(); delete timer;}
bgstack15