diff options
| author | Matthias Melcher <github@matthiasm.com> | 2026-01-05 12:54:12 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2026-01-05 21:06:04 +0100 |
| commit | 89aa5726f8d772e0fec1ebcbdfa3b74aa7a217f8 (patch) | |
| tree | 2bb2c31e1b283d33a1bff29aa3a105362f2a9435 /fluid/io/Project_Writer.cxx | |
| parent | 5f10939cfa0fc943dfc28b441efa9e9028eef5e5 (diff) | |
Fluid: Improve std::string output
Fluid: Update Widget_Node to std::string
Fluid: Image names to std::string
Fluid: std::string tooltip
Fluid: stringify Widget_Node::subtype
Fluid:: extra_code
Diffstat (limited to 'fluid/io/Project_Writer.cxx')
| -rw-r--r-- | fluid/io/Project_Writer.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/io/Project_Writer.cxx b/fluid/io/Project_Writer.cxx index 387c0093f..54af531e9 100644 --- a/fluid/io/Project_Writer.cxx +++ b/fluid/io/Project_Writer.cxx @@ -119,9 +119,9 @@ int Project_Writer::write_project(const char *filename, int selected_only, bool proj_.i18n.write(*this); if (!selected_only) { - write_string("\nheader_name"); write_word(proj_.header_file_name.c_str()); - write_string("\ncode_name"); write_word(proj_.code_file_name.c_str()); - write_string("\ninclude_guard"); write_word(proj_.include_guard.c_str()); + write_string("\nheader_name"); write_word(proj_.header_file_name); + write_string("\ncode_name"); write_word(proj_.code_file_name); + write_string("\ninclude_guard"); write_word(proj_.include_guard); Fluid.layout_list.write(this); if (g_shell_config) g_shell_config->write(this); |
