X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fgeneral.h;h=9dc005955cd1e35f313aa06e557b6c3cb357f8a6;hb=b494445bc3ba5344e65869c7c6bab2b008438f1c;hp=3be6ccef55a21a95a90b70c86dab0078c065363c;hpb=6e5541034896607b250e03206045aa1a0d8d5ce2;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/general.h b/synfig-core/trunk/src/synfig/general.h index 3be6cce..9dc0059 100644 --- a/synfig-core/trunk/src/synfig/general.h +++ b/synfig-core/trunk/src/synfig/general.h @@ -41,7 +41,7 @@ //#define gettext(x) (x) #endif -#define SYNFIG_COPYRIGHT "Copyright (c) 2001-2004 Voria Software, LLC" +#define SYNFIG_COPYRIGHT "Copyright (c) 2001-2005 Robert B. Quattlebaum Jr., Adrian Bentley" #ifdef _DEBUG @@ -63,16 +63,15 @@ namespace synfig { class ChangeLocale { - const char *previous; - int category; + const String previous; + const int category; public: ChangeLocale(int category, const char *locale): - previous(setlocale(category,NULL)),category(category) + previous(setlocale(category,locale)),category(category) { - setlocale(category,locale); } ~ChangeLocale() { - setlocale(category,previous); + setlocale(category,previous.c_str()); } };