fix LocalizedString::Load doesn't fill the value

Localize loading messages
This commit is contained in:
Chris Danford
2006-01-07 05:43:25 +00:00
parent 7db7a5fb80
commit 168a98773e
4 changed files with 17 additions and 8 deletions
+3 -1
View File
@@ -51,7 +51,9 @@ void LocalizedString::Load( const RString &sSection, const RString &sName )
{
m_sSection = sSection;
m_sName = sName;
m_sValue = sName;
m_sValue = "????";
Refresh();
}
LocalizedString::operator RString() const