diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2018-08-25 15:17:16 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2018-08-25 15:17:16 +0000 |
| commit | 011e5c498a1f3f197d503bf5ce806e836d667f08 (patch) | |
| tree | 7d48dd1b47908f4bf3d4ddc095c683a31a7ca44f /fluid/Fluid_Image.cxx | |
| parent | 8de0a3c4453c50ae193c0603c7e57516a8157905 (diff) | |
Added new functionality to Fluid: the 'binary data' type can now include text files as well as binary files into the source code. There is an additional check box in the dialog. Terminology is now "inlined data" instead of "binary data". Texts were modified to reflect the changes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@13026 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/Fluid_Image.cxx')
| -rw-r--r-- | fluid/Fluid_Image.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fluid_Image.cxx b/fluid/Fluid_Image.cxx index 653d45abc..d0572d8eb 100644 --- a/fluid/Fluid_Image.cxx +++ b/fluid/Fluid_Image.cxx @@ -99,7 +99,7 @@ void Fluid_Image::write_static() { FILE *f = fl_fopen(name(), "rb"); if (!f) { - // message = "Can't include binary file. Can't open"; + // message = "Can't inline file into source code. Can't open"; } else { fseek(f, 0, SEEK_END); size_t nData = ftell(f); |
