Added copy constructor to LocalizedString so that a LocalizedString created by copying another does not crash in the destructor.
This commit is contained in:
@@ -13,6 +13,7 @@ class LocalizedString
|
||||
{
|
||||
public:
|
||||
LocalizedString( const RString& sGroup = "", const RString& sName = "" );
|
||||
LocalizedString(LocalizedString const& other);
|
||||
~LocalizedString();
|
||||
void Load( const RString& sGroup, const RString& sName );
|
||||
operator const RString &() const { return GetValue(); }
|
||||
|
||||
Reference in New Issue
Block a user