fix bookkeeping alignment

This commit is contained in:
Chris Danford
2004-08-22 05:37:12 +00:00
parent 0cea1362b0
commit 02893160ce
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ CString LastWeekToString( int iLastWeekIndex )
{
case 0: return "ThisWeek"; break;
case 1: return "LastWeek"; break;
default: return ssprintf("Week%dAgo",iLastWeekIndex); break;
default: return ssprintf("Week%02dAgo",iLastWeekIndex); break;
}
}