diff options
author | Jan Dalheimer <jan@dalheimer.de> | 2014-07-12 17:58:23 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-07-12 23:31:05 +0200 |
commit | 5c4384235989b16d6931cc0cfa26dd192af68b96 (patch) | |
tree | 90e9fa1b758c97302726e01882e9c7c914426182 /gui/pages/LogPage.h | |
parent | aba1f89e2abfd596eb01c674d1b2deee3bdc1047 (diff) | |
download | PrismLauncher-5c4384235989b16d6931cc0cfa26dd192af68b96.tar.gz PrismLauncher-5c4384235989b16d6931cc0cfa26dd192af68b96.tar.bz2 PrismLauncher-5c4384235989b16d6931cc0cfa26dd192af68b96.zip |
Add a new page that can show all sorts of logs
Diffstat (limited to 'gui/pages/LogPage.h')
-rw-r--r-- | gui/pages/LogPage.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gui/pages/LogPage.h b/gui/pages/LogPage.h index 933e518b..72ca09ec 100644 --- a/gui/pages/LogPage.h +++ b/gui/pages/LogPage.h @@ -36,12 +36,12 @@ class LogPage : public QWidget, public BasePage public: explicit LogPage(MinecraftProcess *proc, QWidget *parent = 0); virtual ~LogPage(); - virtual QString displayName() override; - virtual QIcon icon() override; - virtual QString id() override; + virtual QString displayName() const override; + virtual QIcon icon() const override; + virtual QString id() const override; virtual bool apply(); - virtual QString helpPage() override { return "Minecraft-Log"; }; - virtual bool shouldDisplay(); + virtual QString helpPage() const override { return "Minecraft-Log"; } + virtual bool shouldDisplay() const; private: /** |