aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/BootSplash.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-12-01 10:33:19 -0500
committerKen Moore <ken@ixsystems.com>2016-12-01 10:33:19 -0500
commitf7b894621578f5b54b3da9a3291586cee503c2d9 (patch)
tree1c68d19d5be77c22b56f99f6e1d440760bad5dac /src-qt5/core/lumina-desktop/BootSplash.h
parentAdd the Lumina version to the bottom of the boot splash as well. (diff)
downloadlumina-f7b894621578f5b54b3da9a3291586cee503c2d9.tar.gz
lumina-f7b894621578f5b54b3da9a3291586cee503c2d9.tar.bz2
lumina-f7b894621578f5b54b3da9a3291586cee503c2d9.zip
Get rid of the "fortune" usage, and replace it with a built-in system of tips for Lumina itself (avoids strange stuff from fortune, and ensures information which is at least semi-useful for the user).
Diffstat (limited to 'src-qt5/core/lumina-desktop/BootSplash.h')
-rw-r--r--src-qt5/core/lumina-desktop/BootSplash.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/BootSplash.h b/src-qt5/core/lumina-desktop/BootSplash.h
index f5bf97a8..f9812ff4 100644
--- a/src-qt5/core/lumina-desktop/BootSplash.h
+++ b/src-qt5/core/lumina-desktop/BootSplash.h
@@ -18,6 +18,8 @@ class BootSplash : public QWidget{
private:
Ui::BootSplash *ui;
+ void generateTipOfTheDay();
+
public:
BootSplash();
~BootSplash(){}
@@ -26,4 +28,4 @@ public:
void showText(QString txt); //will only update the text, not the icon/progress
};
-#endif \ No newline at end of file
+#endif
bgstack15