diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-22 02:40:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-22 02:40:46 +0300 |
commit | 27d3f4f1af359634dc3eddcfd155efc65f54e6c0 (patch) | |
tree | 60e6814190e857245c9df05cb6faeb66792a6353 /src/gui/widgets | |
parent | 72be37009a0bbd6594e10ac19bd90830c42f178b (diff) | |
download | plus-27d3f4f1af359634dc3eddcfd155efc65f54e6c0.tar.gz plus-27d3f4f1af359634dc3eddcfd155efc65f54e6c0.tar.bz2 plus-27d3f4f1af359634dc3eddcfd155efc65f54e6c0.tar.xz plus-27d3f4f1af359634dc3eddcfd155efc65f54e6c0.zip |
Remove default parameters from SocialTab::buildCounter.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/tabs/socialtab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/tabs/socialtab.h b/src/gui/widgets/tabs/socialtab.h index 34f864561..1c94aaede 100644 --- a/src/gui/widgets/tabs/socialtab.h +++ b/src/gui/widgets/tabs/socialtab.h @@ -66,8 +66,8 @@ class SocialTab notfinal : public Tab { } - virtual void buildCounter(const int online A_UNUSED = 0, - const int total A_UNUSED = 0) + virtual void buildCounter(const int online A_UNUSED, + const int total A_UNUSED) { } |