diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/tabs/socialtab.h | 4 | ||||
-rw-r--r-- | src/gui/windows/socialwindow.cpp | 2 |
2 files changed, 3 insertions, 3 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) { } diff --git a/src/gui/windows/socialwindow.cpp b/src/gui/windows/socialwindow.cpp index aa240498d..174762100 100644 --- a/src/gui/windows/socialwindow.cpp +++ b/src/gui/windows/socialwindow.cpp @@ -593,7 +593,7 @@ void SocialWindow::updateParty() if (it != mParties.end()) { SocialTab *const tab = (*it).second; - tab->buildCounter(); + tab->buildCounter(0, 0); } } } |