Translated using Weblate (Japanese)
[oweals/minetest.git] / src / guiFileSelectMenu.cpp
index e98b025c62233a308f1d8242899e18a39dbd7f46..e02407427f51907ae9e88ce3a001f572578cf9a0 100644 (file)
@@ -26,7 +26,7 @@ GUIFileSelectMenu::GUIFileSelectMenu(gui::IGUIEnvironment* env,
                                std::string title, std::string formname) :
 GUIModalMenu(env, parent, id, menumgr)
 {
-       m_title = narrow_to_wide(title);
+       m_title = utf8_to_wide(title);
        m_parent = parent;
        m_formname = formname;
        m_text_dst = 0;
@@ -84,10 +84,10 @@ void GUIFileSelectMenu::drawMenu()
 
 void GUIFileSelectMenu::acceptInput() {
        if ((m_text_dst != 0) && (this->m_formname != "")){
-               std::map<std::string, std::string> fields;
+               StringMap fields;
 
                if (m_accepted)
-                       fields[m_formname + "_accepted"] = wide_to_narrow(m_fileOpenDialog->getFileName());
+                       fields[m_formname + "_accepted"] = wide_to_utf8(m_fileOpenDialog->getFileName());
                else
                        fields[m_formname + "_canceled"] = m_formname;