]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/preferencedictionary.h
Replace custom string classes with std::string - gone forever version
[xonotic/netradiant.git] / radiant / preferencedictionary.h
index ce3f768685b40ff5d696fe5c5381434fc24a9a31..ca4baab196b4204c53f139bdbf3ba5f2bcce8238 100644 (file)
@@ -47,10 +47,10 @@ void exportString( const StringImportCallback& importer ){
 }
 };
 
-typedef std::map<CopiedString, PreferenceEntry> PreferenceEntries;
+typedef std::map<std::string, PreferenceEntry> PreferenceEntries;
 PreferenceEntries m_preferences;
 
-typedef std::map<CopiedString, CopiedString> PreferenceCache;
+typedef std::map<std::string, std::string> PreferenceCache;
 PreferenceCache m_cache;
 
 public:
@@ -185,7 +185,7 @@ struct xml_state_t
        }
 
        ETag m_tag;
-       CopiedString m_name;
+       std::string m_name;
        StringOutputStream m_ostream;
 };