X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_bmp%2Ftrgt_bmp.cpp;h=e8b828fa0e014b7e975d9aea34c5f18936cbaead;hb=527c2e21fdb08c47a2afe21c02ec56bf7835a771;hp=1a4533911babd0b721f02a4344ab01f44ec7654a;hpb=16b3beced25134bef064705568ecb893a6be4e79;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_bmp/trgt_bmp.cpp b/synfig-core/trunk/src/modules/mod_bmp/trgt_bmp.cpp index 1a45339..e8b828f 100644 --- a/synfig-core/trunk/src/modules/mod_bmp/trgt_bmp.cpp +++ b/synfig-core/trunk/src/modules/mod_bmp/trgt_bmp.cpp @@ -1,4 +1,4 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file trgt_bmp.cpp ** \brief Bitmap Target ** @@ -21,7 +21,7 @@ /* === H E A D E R S ======================================================= */ -#define SINFG_NO_ANGLE +#define SYNFIG_NO_ANGLE #ifdef USING_PCH # include "pch.h" @@ -31,7 +31,7 @@ #endif #include "trgt_bmp.h" -#include +#include #include #include @@ -40,17 +40,17 @@ /* === U S I N G =========================================================== */ -using namespace sinfg; +using namespace synfig; using namespace std; using namespace etl; /* === I N F O ============================================================= */ -SINFG_TARGET_INIT(bmp); -SINFG_TARGET_SET_NAME(bmp,"bmp"); -SINFG_TARGET_SET_EXT(bmp,"bmp"); -SINFG_TARGET_SET_VERSION(bmp,"0.1"); -SINFG_TARGET_SET_CVS_ID(bmp,"$Id: trgt_bmp.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $"); +SYNFIG_TARGET_INIT(bmp); +SYNFIG_TARGET_SET_NAME(bmp,"bmp"); +SYNFIG_TARGET_SET_EXT(bmp,"bmp"); +SYNFIG_TARGET_SET_VERSION(bmp,"0.1"); +SYNFIG_TARGET_SET_CVS_ID(bmp,"$Id: trgt_bmp.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $"); /* === C L A S S E S & S T R U C T S ======================================= */ @@ -164,7 +164,7 @@ bmp::end_frame() } bool -bmp::start_frame(sinfg::ProgressCallback *callback) +bmp::start_frame(synfig::ProgressCallback *callback) { int w=desc.get_w(),h=desc.get_h(); @@ -190,7 +190,7 @@ bmp::start_frame(sinfg::ProgressCallback *callback) if(!file) { if(callback)callback->error(_("Unable to open file")); - else sinfg::error(_("Unable to open file")); + else synfig::error(_("Unable to open file")); return false; } @@ -221,14 +221,14 @@ bmp::start_frame(sinfg::ProgressCallback *callback) if(!fwrite(&fileheader.bfSize,sizeof(BITMAPFILEHEADER)-4,1,file)) { if(callback)callback->error(_("Unable to write file header to file")); - else sinfg::error(_("Unable to write file header to file")); + else synfig::error(_("Unable to write file header to file")); return false; } if(!fwrite(&infoheader,sizeof(BITMAPINFOHEADER),1,file)) { if(callback)callback->error(_("Unable to write info header")); - else sinfg::error(_("Unable to write info header")); + else synfig::error(_("Unable to write info header")); return false; }