aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/main.cpp')
-rw-r--r--src-qt5/desktop-utils/lumina-pdf/main.cpp32
1 files changed, 0 insertions, 32 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 5e2ed0a9..00000000
--- a/src-qt5/desktop-utils/lumina-pdf/main.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-#include <QApplication>
-#include <QDebug>
-#include <QFile>
-#include <QTranslator>
-
-#include "mainUI.h"
-#include <LUtils.h>
-//#include <LuminaThemes.h>
-
-int main(int argc, char **argv) {
- // LTHEME::LoadCustomEnvSettings();
- unsetenv("QT_AUTO_SCREEN_SCALE_FACTOR"); // need pixel-perfect geometries
- QApplication a(argc, argv);
- LUtils::LoadTranslation(&a, "l-pdf");
-
- // 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;
- if (!path.isEmpty()) {
- w.loadFile(path);
- }
- w.show();
- int retCode = a.exec();
- return retCode;
-}
bgstack15