diff options
author | Ken Moore <ken@pcbsd.org> | 2015-02-19 16:36:38 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-02-19 16:36:38 -0500 |
commit | 467b8d8735a9d94684f9508a9f45dd4859cdfea5 (patch) | |
tree | b8e54a6e439953e565eda7baf39679233b261cbe /lumina-info/main.cpp | |
parent | Make sure that the second round of mimetype filters is performed case-insensi... (diff) | |
download | lumina-467b8d8735a9d94684f9508a9f45dd4859cdfea5.tar.gz lumina-467b8d8735a9d94684f9508a9f45dd4859cdfea5.tar.bz2 lumina-467b8d8735a9d94684f9508a9f45dd4859cdfea5.zip |
Update the ROADMAP to 1.0.0-Release
Also make a couple minor tweaks to lumina-info (mostly commented-out debugging statements)
Diffstat (limited to 'lumina-info/main.cpp')
-rw-r--r-- | lumina-info/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lumina-info/main.cpp b/lumina-info/main.cpp index 3997eb21..026c6a05 100644 --- a/lumina-info/main.cpp +++ b/lumina-info/main.cpp @@ -11,12 +11,14 @@ int main(int argc, char ** argv) { - + //qDebug() << "Create Single Application"; LSingleApplication a(argc, argv, "lumina-info"); //loads translations inside constructor if( !a.isPrimaryProcess()){ return 0; } + //qDebug() << "Set Application Name"; a.setApplicationName("About Lumina-DE"); + //qDebug() << "Load Theme Engine"; LuminaThemeEngine themes(&a); - + //qDebug() << "Start the UI"; //Start the UI MainUI w; QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance()) ); |