Allow unicode to be used in track makers names and fix samuncle's name

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@9360 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2011-07-26 00:42:01 +00:00
parent f0956bf5ff
commit 2f571eec10

View File

@@ -82,7 +82,8 @@ private:
std::string m_item_style;
std::string m_description;
std::string m_designer;
core::stringw m_designer;
/** The full filename of the config (xml) file. */
std::string m_filename;
@@ -302,7 +303,7 @@ public:
const std::string& getFilename () const {return m_filename; }
// ------------------------------------------------------------------------
/** Returns the name of the designer. */
const std::string& getDesigner () const {return m_designer; }
const core::stringw& getDesigner () const {return m_designer; }
// ------------------------------------------------------------------------
/** Returns an absolute path to the screenshot file of this track */
const std::string& getScreenshotFile () const {return m_screenshot; }