From 7ab900e41f5f15adccd573d459a80fe60cf6a044 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 7 Nov 2016 13:52:20 -0500 Subject: LARGE UPDATE: 1) Dismantle the Lumina library completely. 2) Setup lots of small subproject files (.pri) for the individual classes within the old library. 3) Move all the Lumina binaries to use the new subproject files 4) Split up the LuminaUtils class/files into LUtils and LDesktopUtils (generic utilities, and desktop-specific utilities) --- src-qt5/desktop-utils/lumina-screenshot/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils/lumina-screenshot/main.cpp') diff --git a/src-qt5/desktop-utils/lumina-screenshot/main.cpp b/src-qt5/desktop-utils/lumina-screenshot/main.cpp index 27e1f2ff..a39d6851 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/main.cpp +++ b/src-qt5/desktop-utils/lumina-screenshot/main.cpp @@ -6,7 +6,7 @@ #include "MainUI.h" #include #include -#include +#include #include int main(int argc, char ** argv) -- cgit From 135fd7e158e8c4c030beb8f9c64bc24303a07da7 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 10 Nov 2016 10:11:28 -0500 Subject: Disable the theme engine from the desktop-utilities. Also start pruning unneeded libLumina classes from the desktop utils. --- src-qt5/desktop-utils/lumina-screenshot/main.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-screenshot/main.cpp') diff --git a/src-qt5/desktop-utils/lumina-screenshot/main.cpp b/src-qt5/desktop-utils/lumina-screenshot/main.cpp index a39d6851..7ba9d2d5 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/main.cpp +++ b/src-qt5/desktop-utils/lumina-screenshot/main.cpp @@ -13,12 +13,11 @@ int main(int argc, char ** argv) { LTHEME::LoadCustomEnvSettings(); LSingleApplication a(argc, argv, "l-screenshot"); - LuminaThemeEngine theme(&a); + //LuminaThemeEngine theme(&a); a.setApplicationName("Take Screenshot"); - //LUtils::LoadTranslation(&a, "l-screenshot"); MainUI w; - QObject::connect(&theme,SIGNAL(updateIcons()), &w, SLOT(setupIcons()) ); + //QObject::connect(&theme,SIGNAL(updateIcons()), &w, SLOT(setupIcons()) ); w.show(); return a.exec(); -- cgit