From e3558ce47844b350b281d1834a47c28fdb895463 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Fri, 11 Jul 2008 16:07:42 +0000 Subject: [PATCH] - MGR: Fix small bug when displaying the active task count in the taskbar. clientgui/ BOINCTaskBar.cpp svn path=/trunk/boinc/; revision=15593 --- checkin_notes | 7 +++++++ clientgui/BOINCTaskBar.cpp | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index 0b9e162d25..32b5ee4dbd 100644 --- a/checkin_notes +++ b/checkin_notes @@ -5672,3 +5672,10 @@ Charlie 11 July 2008 clientgui/ BOINCBaseView.cpp + +Rom 11 July 2008 + - MGR: Fix small bug when displaying the active task count in the + taskbar. + + clientgui/ + BOINCTaskBar.cpp diff --git a/clientgui/BOINCTaskBar.cpp b/clientgui/BOINCTaskBar.cpp index 0744f10c7c..d113d194a1 100644 --- a/clientgui/BOINCTaskBar.cpp +++ b/clientgui/BOINCTaskBar.cpp @@ -381,7 +381,8 @@ void CTaskBarIcon::OnMouseMove(wxTaskBarIconEvent& WXUNUSED(event)) { // enough room to display them all, so just tell the user how many are // currently running. strBuffer.Printf( - _("%d tasks running.") + _("%d tasks running."), + iActiveTaskCount ); if (strMessage.Length() > 0) strMessage += wxT("\n"); strMessage += strBuffer;