diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-04-17 10:31:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-17 10:31:47 -0400 |
| commit | 855650215f5011082f6a3fa4dcfb69b040367911 (patch) | |
| tree | c744c49d7c62c1051c99a12b793377ae40113e1f /src/statusbar.h | |
| parent | ff912b5f6199ade55a4eaff1c8e7eefb8145c970 (diff) | |
| parent | 21166f820bc793111ad40a950807dc84e961fad5 (diff) | |
Merge pull request #1054 from isanae/bunch-of-fixes
Bunch of fixes
Diffstat (limited to 'src/statusbar.h')
| -rw-r--r-- | src/statusbar.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/statusbar.h b/src/statusbar.h index 708615a1..7ff8fcbb 100644 --- a/src/statusbar.h +++ b/src/statusbar.h @@ -7,6 +7,8 @@ struct APIStats; class APIUserAccount; class Settings; +class OrganizerCore; + namespace Ui { class MainWindow; } @@ -41,6 +43,7 @@ public: void setAPI(const APIStats& stats, const APIUserAccount& user); void setUpdateAvailable(bool b); void checkSettings(const Settings& settings); + void updateNormalMessage(OrganizerCore& core); protected: void showEvent(QShowEvent* e); @@ -48,6 +51,7 @@ protected: private: Ui::MainWindow* ui; + QLabel* m_normal; QProgressBar* m_progress; QWidget* m_progressSpacer1; QWidget* m_progressSpacer2; |
