"LastScores"->"RecentScores"

add recent scores to HTML
This commit is contained in:
Chris Danford
2004-05-08 10:12:10 +00:00
parent 6886b09e45
commit e9f576d262
10 changed files with 163 additions and 90 deletions
+9
View File
@@ -233,6 +233,15 @@ void CourseID::LoadFromNode( const XNode* pNode )
pNode->GetAttrValue("Name", sName);
}
CString CourseID::ToString() const
{
if( !sPath.empty() )
return sPath;
if( !sName.empty() )
return sName;
return "";
}
bool CourseID::IsValid() const
{
return !sPath.empty() || !sName.empty();