fix in gcc

This commit is contained in:
Glenn Maynard
2006-01-13 06:34:12 +00:00
parent e3b8969de3
commit d876fa5ecb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ class LocalizedStringImplDefault: public ILocalizedStringImpl
public: public:
static ILocalizedStringImpl *Create() { return new LocalizedStringImplDefault; } static ILocalizedStringImpl *Create() { return new LocalizedStringImplDefault; }
void ILocalizedStringImpl::Load( const RString& sGroup, const RString& sName ) void Load( const RString& sGroup, const RString& sName )
{ {
m_sValue = sName; m_sValue = sName;
} }
+1 -1
View File
@@ -57,7 +57,7 @@ class LocalizedStringImplThemeMetric : public ILocalizedStringImpl, public Theme
public: public:
static ILocalizedStringImpl *Create() { return new LocalizedStringImplThemeMetric; } static ILocalizedStringImpl *Create() { return new LocalizedStringImplThemeMetric; }
void ILocalizedStringImpl::Load( const RString& sGroup, const RString& sName ) void Load( const RString& sGroup, const RString& sName )
{ {
ThemeMetric<RString>::Load( sGroup, sName ); ThemeMetric<RString>::Load( sGroup, sName );
} }