diff options
author | Ken Moore <ken@ixsystems.com> | 2017-04-27 23:48:24 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-04-27 23:48:24 -0400 |
commit | 8eba2f4ad58f6f9cc087e544e5f69a3285a99f10 (patch) | |
tree | e17acae30ebd4ca46d93b9589947202b8d8be8c1 /src-qt5/desktop-utils/lumina-pdf/main.cpp | |
parent | Merge branch 'master' of github.com:trueos/lumina (diff) | |
download | lumina-8eba2f4ad58f6f9cc087e544e5f69a3285a99f10.tar.gz lumina-8eba2f4ad58f6f9cc087e544e5f69a3285a99f10.tar.bz2 lumina-8eba2f4ad58f6f9cc087e544e5f69a3285a99f10.zip |
Move the unfinished utilities in Lumina over to an "experimental" directory.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/main.cpp')
-rw-r--r-- | src-qt5/desktop-utils/lumina-pdf/main.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/main.cpp b/src-qt5/desktop-utils/lumina-pdf/main.cpp deleted file mode 100644 index f6bb9839..00000000 --- a/src-qt5/desktop-utils/lumina-pdf/main.cpp +++ /dev/null @@ -1,31 +0,0 @@ -#include <QTranslator> -#include <QApplication> -#include <QDebug> -#include <QFile> - -#include "mainUI.h" -#include <LUtils.h> -//#include <LuminaThemes.h> - -int main(int argc, char ** argv) -{ - //LTHEME::LoadCustomEnvSettings(); - QApplication a(argc, argv); - LUtils::LoadTranslation(&a, "l-pdf"); - //LuminaThemeEngine theme(&a); - - - //Read the input variables - QString path = ""; - for(int i=1; i<argc; i++){ - path = LUtils::PathToAbsolute( argv[i] ); - if(QFile::exists(path)){ break; } //already found a valid file - } - - MainUI w; - //QObject::connect(&theme, SIGNAL(updateIcons()), &w, SLOT(UpdateIcons()) ); - if(!path.isEmpty()){ w.loadFile(path); } - w.show(); - int retCode = a.exec(); - return retCode; -} |