From c347dddcc4e47d412c452786378014cca6928430 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 13 Jul 2004 06:10:32 +0000 Subject: [PATCH] Fixed a typo svn path=/trunk/boinc/; revision=3855 --- clientgui/MainDocument.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/clientgui/MainDocument.cpp b/clientgui/MainDocument.cpp index d97d7752ff..d6ecfd9d9f 100644 --- a/clientgui/MainDocument.cpp +++ b/clientgui/MainDocument.cpp @@ -21,6 +21,9 @@ // Revision History: // // $Log$ +// Revision 1.9 2004/07/13 06:10:32 rwalton +// Fixed a typo +// // Revision 1.8 2004/07/13 05:56:01 rwalton // Hooked up the Project and Work tab for the new GUI. // @@ -151,7 +154,7 @@ wxString CMainDocument::GetProjectAvgCredit(wxInt32 iIndex) { wxString CMainDocument::GetProjectResourceShare(wxInt32 iIndex) { CachedStateUpdate(); - return wxString::Format(_T("%0.2f%"), m_Projects.Item(iIndex).GetResourceShare()); + return wxString::Format(_T("%0.2f%%"), m_Projects.Item(iIndex).GetResourceShare()); }