From c0920fa4f8d8750259c3fa1e0687fa5ba2bd2f6f Mon Sep 17 00:00:00 2001 From: q5sys Date: Wed, 20 Sep 2017 12:09:00 -0400 Subject: fix tab order for text replacement --- src-qt5/desktop-utils/lumina-fm-dev/main.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src-qt5/desktop-utils/lumina-fm-dev/main.cpp') diff --git a/src-qt5/desktop-utils/lumina-fm-dev/main.cpp b/src-qt5/desktop-utils/lumina-fm-dev/main.cpp index 61d2dc95..a4a6244e 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/main.cpp +++ b/src-qt5/desktop-utils/lumina-fm-dev/main.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include "MainUI.h" #include @@ -10,6 +11,7 @@ #include #include "BrowserWidget.h" +QElapsedTimer* timer = 0; int main(int argc, char ** argv) { @@ -27,6 +29,7 @@ int main(int argc, char ** argv) MainUI w; QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance(QStringList)) ); //QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(setupIcons()) ); + timer = new QElapsedTimer(); timer->start(); qDebug() << " - Init:" << timer->elapsed(); w.OpenDirs(in); w.show(); -- cgit