summaryrefslogtreecommitdiff
path: root/fluid/app/Image_Asset.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fluid/app/Image_Asset.cxx')
-rw-r--r--fluid/app/Image_Asset.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/fluid/app/Image_Asset.cxx b/fluid/app/Image_Asset.cxx
index 36fa4d443..31847a416 100644
--- a/fluid/app/Image_Asset.cxx
+++ b/fluid/app/Image_Asset.cxx
@@ -109,7 +109,7 @@ static struct {
\param fmt short name of file contents for error message
\return 0 if the file could not be opened or read
*/
-size_t Image_Asset::write_static_binary(fld::io::Code_Writer& f, const char* fmt) {
+size_t Image_Asset::write_static_binary(Code_Writer& f, const char* fmt) {
size_t nData = 0;
Fluid.proj.enter_project_dir();
FILE *in = fl_fopen(filename(), "rb");
@@ -143,7 +143,7 @@ size_t Image_Asset::write_static_binary(fld::io::Code_Writer& f, const char* fmt
\param fmt short name of file contents for error message
\return 0 if the file could not be opened or read
*/
-size_t Image_Asset::write_static_text(fld::io::Code_Writer& f, const char* fmt) {
+size_t Image_Asset::write_static_text(Code_Writer& f, const char* fmt) {
size_t nData = 0;
Fluid.proj.enter_project_dir();
FILE *in = fl_fopen(filename(), "rb");
@@ -180,7 +180,7 @@ size_t Image_Asset::write_static_text(fld::io::Code_Writer& f, const char* fmt)
\param fmt short name of file contents for error message
\return 0 if the file could not be opened or read
*/
-void Image_Asset::write_static_rgb(fld::io::Code_Writer& f, const char* idata_name) {
+void Image_Asset::write_static_rgb(Code_Writer& f, const char* idata_name) {
// Write image data...
f.write_c("\n");
f.write_c_once("#include <FL/Fl_Image.H>\n");
@@ -206,7 +206,7 @@ void Image_Asset::write_static_rgb(fld::io::Code_Writer& f, const char* idata_na
\param f Write code to this C++ source code file
\param compressed write data in the original compressed file format
*/
-void Image_Asset::write_static(fld::io::Code_Writer& f, int compressed) {
+void Image_Asset::write_static(Code_Writer& f, int compressed) {
if (!image_) return;
const char *idata_name = f.unique_id(this, "idata", fl_filename_name(filename()), 0);
if (initializer_function_) free(initializer_function_);
@@ -340,7 +340,7 @@ void Image_Asset::write_static(fld::io::Code_Writer& f, int compressed) {
\param f The C++ source code file to write the warning message to.
\param fmt The format string for the image file type.
*/
-void Image_Asset::write_file_error(fld::io::Code_Writer& f, const char *fmt) {
+void Image_Asset::write_file_error(Code_Writer& f, const char *fmt) {
f.write_c("#warning Cannot read %s file \"%s\": %s\n", fmt, filename(), strerror(errno));
Fluid.proj.enter_project_dir();
f.write_c("// Searching in path \"%s\"\n", fl_getcwd(0, FL_PATH_MAX));
@@ -367,7 +367,7 @@ void Image_Asset::write_file_error(fld::io::Code_Writer& f, const char *fmt) {
\param image_class Name of the Fl_Image class, for example Fl_GIF_Image.
\param format Format string for additional parameters for the constructor.
*/
-void Image_Asset::write_initializer(fld::io::Code_Writer& f, const char *image_class, const char *format, ...) {
+void Image_Asset::write_initializer(Code_Writer& f, const char *image_class, const char *format, ...) {
va_list ap;
va_start(ap, format);
f.write_c("static Fl_Image *%s() {\n", initializer_function_);
@@ -395,7 +395,7 @@ void Image_Asset::write_initializer(fld::io::Code_Writer& f, const char *image_c
\param var Name of the Fl_Widget or Fl_Menu_Item to attach the image to.
\param inactive If true, use deimage() instead of image().
*/
-void Image_Asset::write_code(fld::io::Code_Writer& f, int bind, const char *var, int inactive) {
+void Image_Asset::write_code(Code_Writer& f, int bind, const char *var, int inactive) {
if (image_) {
f.write_c("%s%s->%s%s( %s() );\n",
f.indent(),
@@ -421,7 +421,7 @@ void Image_Asset::write_code(fld::io::Code_Writer& f, int bind, const char *var,
\param f Write the C++ code to this file.
\param inactive Unused.
*/
-void Image_Asset::write_inline(fld::io::Code_Writer& f, int inactive) {
+void Image_Asset::write_inline(Code_Writer& f, int inactive) {
(void)inactive;
if (image_) {
f.write_c("%s()", initializer_function_);