diff options
author | Jonathan Bauer | 2011-06-16 16:49:12 +0200 |
---|---|---|
committer | Jonathan Bauer | 2011-06-16 16:49:12 +0200 |
commit | 5157706e2f32f2403409b293e8d835cbcdb8881b (patch) | |
tree | d59290461057941fe2a06df4b89000be3a29230e | |
parent | black background... (diff) | |
download | fbsplash-5157706e2f32f2403409b293e8d835cbcdb8881b.tar.gz fbsplash-5157706e2f32f2403409b293e8d835cbcdb8881b.tar.xz fbsplash-5157706e2f32f2403409b293e8d835cbcdb8881b.zip |
black background...
-rw-r--r-- | src/fbsplash.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fbsplash.cpp b/src/fbsplash.cpp index 7df12ab..cf42f97 100644 --- a/src/fbsplash.cpp +++ b/src/fbsplash.cpp @@ -1,3 +1,4 @@ +#include <QProgressBar> #include "fbsplash.h" fbsplash::fbsplash() : @@ -8,6 +9,9 @@ fbsplash::fbsplash() : createQuitAction(); setupTheme(); + QProgressBar* pb; + setCentralWidget(pb); + setAttribute(Qt::WA_QuitOnClose, true); setWindowFlags(Qt::FramelessWindowHint); showFullScreen(); |