aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-info
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-11-20 14:21:06 -0500
committerKen Moore <ken@ixsystems.com>2017-11-20 14:21:06 -0500
commitb9afbb6b6133552113ac8da9d7edf62e45c454ae (patch)
treeff620cbefa73ab819276e2ef0b4ab7f68d70c17d /src-qt5/core/lumina-info
parentMake the new "set as wallpaper" menu option enabled/disabled instead of visib... (diff)
downloadlumina-b9afbb6b6133552113ac8da9d7edf62e45c454ae.tar.gz
lumina-b9afbb6b6133552113ac8da9d7edf62e45c454ae.tar.bz2
lumina-b9afbb6b6133552113ac8da9d7edf62e45c454ae.zip
Bump the LICENSE year in lumina-info, and disable the old theme engine.
Diffstat (limited to 'src-qt5/core/lumina-info')
-rw-r--r--src-qt5/core/lumina-info/LICENSE2
-rw-r--r--src-qt5/core/lumina-info/main.cpp2
2 files changed, 1 insertions, 3 deletions
diff --git a/src-qt5/core/lumina-info/LICENSE b/src-qt5/core/lumina-info/LICENSE
index 8cf98833..85d675a4 100644
--- a/src-qt5/core/lumina-info/LICENSE
+++ b/src-qt5/core/lumina-info/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2012-2016, Ken Moore (moorekou@gmail.com)
+Copyright (c) 2012-2017, Ken Moore (moorekou@gmail.com)
All rights reserved
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
diff --git a/src-qt5/core/lumina-info/main.cpp b/src-qt5/core/lumina-info/main.cpp
index e30911c5..f4cd921a 100644
--- a/src-qt5/core/lumina-info/main.cpp
+++ b/src-qt5/core/lumina-info/main.cpp
@@ -17,8 +17,6 @@ int main(int argc, char ** argv)
if( !a.isPrimaryProcess()){ return 0; }
//qDebug() << "Set Application Name";
a.setApplicationName("About Lumina");
- //qDebug() << "Load Theme Engine";
- LuminaThemeEngine themes(&a);
//qDebug() << "Start the UI";
//Start the UI
MainUI w;
bgstack15