From efa42293bc4e1be7522351ee8eb1d0d7e78c8e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Thu, 12 Oct 2000 02:17:32 +0000 Subject: [PATCH] guard with ENABLE_NLS git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1105 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/gettext.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gettext.C b/src/gettext.C index 1bed23dce0..9d17c623c5 100644 --- a/src/gettext.C +++ b/src/gettext.C @@ -3,6 +3,7 @@ #include "LString.h" #include "gettext.h" +#ifdef ENABLE_NLS char const * _(char const * str) { @@ -20,3 +21,5 @@ string const _(string const & str) delete [] tmp; return ret; } + +#endif