diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-10-31 11:20:54 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-10-31 11:21:13 +0100 |
| commit | a2d7fde645800442fb8b3f8fe567ac8b7cae0dec (patch) | |
| tree | d74b8ac6b1aa9009e7095894c530acf1c024f9dc /fluid/fluid.cxx | |
| parent | 99826a5fba6a0f6767262d20b3c8d23b5123f415 (diff) | |
FLUID: Stroe uid's in hex
Diffstat (limited to 'fluid/fluid.cxx')
| -rw-r--r-- | fluid/fluid.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx index 40442d3ad..157b99630 100644 --- a/fluid/fluid.cxx +++ b/fluid/fluid.cxx @@ -1291,6 +1291,8 @@ int mergeback_code_files() if (!batch_mode) { Fl_Preferences build_records(Fl_Preferences::USER_L, "fltk.org.build", "fluid"); Fl_Preferences path(build_records, proj_filename.c_str()); + int i, n = proj_filename.size(); + for (i=0; i<n; i++) if (proj_filename[i]=='\\') proj_filename[i] = '/'; preferences_get(path, "code", code_filename, ""); } #endif |
