X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fmain.cpp;h=b905c2a03aeaa58e8748553613a41119128495e0;hb=392b62fa87099d8576a9da614be431a5046fe595;hp=2c5be1395e77a3bd7ffd1f7122b76f8a15e987c0;hpb=824c246d2f8f8bc825f251385f5084b58256cb59;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/main.cpp b/synfig-core/trunk/src/synfig/main.cpp index 2c5be13..b905c2a 100644 --- a/synfig-core/trunk/src/synfig/main.cpp +++ b/synfig-core/trunk/src/synfig/main.cpp @@ -55,10 +55,6 @@ #include "mutex.h" -#ifdef DEATH_TIME -#include -#endif - #ifdef HAVE_SIGNAL_H #include #endif @@ -117,8 +113,6 @@ synfig::check_version_(int version,int vec_size, int color_size,int canvas_size, { bool ret=true; - CHECK_EXPIRE_TIME(); - if(version!=SYNFIG_LIBRARY_VERSION) { synfig::error(_("API Version mismatch (LIB:%d, PROG:%d)"),SYNFIG_LIBRARY_VERSION,version); @@ -219,8 +213,9 @@ synfig::Main::Main(const synfig::String& basepath,ProgressCallback *cb): // Add initialization after this point - - CHECK_EXPIRE_TIME(); +#ifdef ENABLE_NLS + bindtextdomain("synfig", LOCALEDIR); +#endif String prefix=basepath+"/.."; unsigned int i; @@ -344,8 +339,6 @@ synfig::Main::Main(const synfig::String& basepath,ProgressCallback *cb): // load_modules(cb); - CHECK_EXPIRE_TIME(); - if(cb)cb->amount_complete(100, 100); if(cb)cb->task(_("DONE")); @@ -370,19 +363,19 @@ synfig::Main::~Main() } } - synfig::info("ValueNode::subsys_stop()"); + // synfig::info("ValueNode::subsys_stop()"); ValueNode::subsys_stop(); - synfig::info("Importer::subsys_stop()"); + // synfig::info("Importer::subsys_stop()"); Importer::subsys_stop(); - synfig::info("Target::subsys_stop()"); + // synfig::info("Target::subsys_stop()"); Target::subsys_stop(); - synfig::info("Layer::subsys_stop()"); + // synfig::info("Layer::subsys_stop()"); Layer::subsys_stop(); - /*! \fixme For some reason, uncommenting the next line will cause things to crash. - This needs to be looked into at some point. */ + /*! \todo For some reason, uncommenting the next line will cause things to crash. + This needs to be looked into at some point. */ // synfig::info("Module::subsys_stop()"); // Module::subsys_stop(); - synfig::info("Exiting"); + // synfig::info("Exiting"); #if defined(HAVE_SIGNAL_H) && defined(SIGPIPE) signal(SIGPIPE, SIG_DFL);