This commit is contained in:
ghorvath
2010-04-16 10:29:18 +00:00
parent 71b74bbfd2
commit 68c4f03a59
205 changed files with 7112 additions and 15069 deletions

View File

@@ -18,7 +18,8 @@
*/
#include <glib/gstdio.h>
#include <multilangmgr.h>
#include <string.h>
#include <string.h>
#include <safegtk.h>
MultiLangMgr langMgr;
@@ -79,7 +80,7 @@ bool MultiLangMgr::save (Glib::ustring fname) {
std::map<std::string, Glib::ustring>::iterator r;
for (r=transTable.begin (); r!=transTable.end(); r++)
fprintf (f, "%s;%s\n", r->first.c_str(), Glib::locale_from_utf8(r->second).c_str());
fprintf (f, "%s;%s\n", r->first.c_str(), safe_locale_from_utf8(r->second).c_str());
fclose (f);
return true;