diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-09-27 01:34:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-09-27 01:34:49 +0300 |
commit | 68a7dd225969fcdfb9c07b99db43756a2b1dec7c (patch) | |
tree | 644c14f9b178a968a53e742fb5f37aaf29fc062d /src/gui/windows/statuswindow.h | |
parent | d3f3ec92d583fcaecccb500c8940f33d7228ff89 (diff) | |
download | plus-68a7dd225969fcdfb9c07b99db43756a2b1dec7c.tar.gz plus-68a7dd225969fcdfb9c07b99db43756a2b1dec7c.tar.bz2 plus-68a7dd225969fcdfb9c07b99db43756a2b1dec7c.tar.xz plus-68a7dd225969fcdfb9c07b99db43756a2b1dec7c.zip |
Change attributes value type to int64.
Diffstat (limited to 'src/gui/windows/statuswindow.h')
-rw-r--r-- | src/gui/windows/statuswindow.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/windows/statuswindow.h b/src/gui/windows/statuswindow.h index 01277c220..daced90b2 100644 --- a/src/gui/windows/statuswindow.h +++ b/src/gui/windows/statuswindow.h @@ -73,8 +73,8 @@ class StatusWindow final : public Window, void updateStatusBar(ProgressBar *const bar, const bool percent = true) const; static void updateProgressBar(ProgressBar *const bar, - const int value, - const int max, + const int64_t value, + const int64_t max, const bool percent); static void updateProgressBar(ProgressBar *const bar, const AttributesT id, @@ -83,8 +83,8 @@ class StatusWindow final : public Window, void action(const ActionEvent &event) override; void attributeChanged(const AttributesT id, - const int oldVal, - const int newVal) override final; + const int64_t oldVal, + const int64_t newVal) override final; void statChanged(const AttributesT id, const int oldVal1, |