X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fgeneral.h;h=238f78e518d060579ee7728a155816e20bbfeaa5;hb=7761b053b4c9446a84c447ec7b806ca10aa3ac63;hp=7136afa2ac1ad59667690de104691a12242143a3;hpb=5ddcf36f04cfbd10fabda4e3c5633cb27cdd4c0a;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/general.h b/synfig-core/trunk/src/synfig/general.h index 7136afa..238f78e 100644 --- a/synfig-core/trunk/src/synfig/general.h +++ b/synfig-core/trunk/src/synfig/general.h @@ -1,8 +1,8 @@ /* === S Y N F I G ========================================================= */ /*! \file general.h -** \brief General macros, classes, and prodecure declarations +** \brief General macros, classes, and procedure declarations ** -** $Id: general.h,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley @@ -31,15 +31,13 @@ #include "string.h" #include "version.h" #include +#include /* === M A C R O S ========================================================= */ -// Quick hack to keep stuff working until gettext support is added -#ifndef _ -#define _(x) (x) -#define N_(x) (x) -//#define gettext(x) (x) -#endif +#define _(x) dgettext("synfig",x) +#define gettext_noop(x) x +#define N_(x) gettext_noop(x) #define SYNFIG_COPYRIGHT "Copyright (c) 2001-2005 Robert B. Quattlebaum Jr., Adrian Bentley" @@ -83,10 +81,10 @@ class ProgressCallback public: virtual ~ProgressCallback() { } - virtual bool task(const String &task) { return true; } - virtual bool error(const String &task) { return true; } - virtual bool warning(const String &task) { return true; } - virtual bool amount_complete(int current, int total) { return true; } + virtual bool task(const String &/*task*/) { return true; } + virtual bool error(const String &/*task*/) { return true; } + virtual bool warning(const String &/*task*/) { return true; } + virtual bool amount_complete(int /*current*/, int /*total*/) { return true; } virtual bool valid() const { return true; } };