summaryrefslogtreecommitdiff
path: root/fluid/io/String_Writer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fluid/io/String_Writer.cxx')
-rw-r--r--fluid/io/String_Writer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/io/String_Writer.cxx b/fluid/io/String_Writer.cxx
index 4928e218a..6d7761a49 100644
--- a/fluid/io/String_Writer.cxx
+++ b/fluid/io/String_Writer.cxx
@@ -69,7 +69,7 @@ int fld::io::write_strings(Project &proj, const std::string &filename) {
if (!fp) return 1;
switch (proj.i18n.type) {
- case fld::I18n_Type::NONE : /* None, just put static text out */
+ case FLD_I18N_TYPE_NONE : /* None, just put static text out */
fprintf(fp, "# generated by Fast Light User Interface Designer (fluid) version %.4f\n",
FL_VERSION);
for (auto w: proj.tree.all_widgets()) {
@@ -83,7 +83,7 @@ int fld::io::write_strings(Project &proj, const std::string &filename) {
}
}
break;
- case fld::I18n_Type::GNU : /* GNU gettext, put a .po file out */
+ case FLD_I18N_TYPE_GNU : /* GNU gettext, put a .po file out */
fprintf(fp, "# generated by Fast Light User Interface Designer (fluid) version %.4f\n",
FL_VERSION);
for (p = proj.tree.first; p; p = p->next) {
@@ -112,7 +112,7 @@ int fld::io::write_strings(Project &proj, const std::string &filename) {
}
}
break;
- case fld::I18n_Type::POSIX : /* POSIX catgets, put a .msg file out */
+ case FLD_I18N_TYPE_POSIX : /* POSIX catgets, put a .msg file out */
fprintf(fp, "$ generated by Fast Light User Interface Designer (fluid) version %.4f\n",
FL_VERSION);
fprintf(fp, "$set %s\n", proj.i18n.posix_set.c_str());