From 480dd2f28c107843858e9c05292f49c979ab99c9 Mon Sep 17 00:00:00 2001 From: David Capello Date: Sat, 31 Jan 2015 18:45:40 -0300 Subject: [PATCH] Remove printf() in fop_to_save_document() --- src/app/file/file.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/app/file/file.cpp b/src/app/file/file.cpp index a9609df62..985587ed2 100644 --- a/src/app/file/file.cpp +++ b/src/app/file/file.cpp @@ -404,15 +404,10 @@ FileOp* fop_to_save_document(Context* context, Document* document, const char* f else if (fop->document->sprite()->totalFrames() > 1) fn_format = add_frame_format(fn_format, &buf[0]); - printf("start_from = %d\n", start_from); - printf("fn_format = %s\n", fn_format.c_str()); - printf("fn = %s\n", fn.c_str()); - for (FrameNumber frame(0); framedocument->sprite()->totalFrames(); ++frame) { std::string frame_fn = filename_formatter(fn_format, fn, "", start_from+frame); - printf("frame_fn = %s\n", frame_fn.c_str()); fop->seq.filename_list.push_back(frame_fn); } }