diff options
author | Ken Moore <ken@ixsystems.com> | 2016-11-10 10:11:28 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-11-10 10:11:28 -0500 |
commit | 135fd7e158e8c4c030beb8f9c64bc24303a07da7 (patch) | |
tree | f3eee04b584a7a18efcb6484c63b1145a3fa6a33 /src-qt5/desktop-utils/lumina-fileinfo/main.cpp | |
parent | Due to some erratic reports of the wallpaper widget not staying on the bottom... (diff) | |
download | lumina-135fd7e158e8c4c030beb8f9c64bc24303a07da7.tar.gz lumina-135fd7e158e8c4c030beb8f9c64bc24303a07da7.tar.bz2 lumina-135fd7e158e8c4c030beb8f9c64bc24303a07da7.zip |
Disable the theme engine from the desktop-utilities.
Also start pruning unneeded libLumina classes from the desktop utils.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fileinfo/main.cpp')
-rw-r--r-- | src-qt5/desktop-utils/lumina-fileinfo/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/desktop-utils/lumina-fileinfo/main.cpp b/src-qt5/desktop-utils/lumina-fileinfo/main.cpp index 46f83831..4b048487 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/main.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/main.cpp @@ -12,7 +12,7 @@ int main(int argc, char ** argv) LTHEME::LoadCustomEnvSettings(); QApplication a(argc, argv); LUtils::LoadTranslation(&a, "l-fileinfo"); - LuminaThemeEngine theme(&a); + //LuminaThemeEngine theme(&a); //Read the input variables @@ -39,7 +39,7 @@ int main(int argc, char ** argv) } if(!path.isEmpty() || !flag.isEmpty()){ MainUI w; - QObject::connect(&theme, SIGNAL(updateIcons()), &w, SLOT(UpdateIcons()) ); + //QObject::connect(&theme, SIGNAL(updateIcons()), &w, SLOT(UpdateIcons()) ); w.LoadFile(path, flag); w.show(); int retCode = a.exec(); |