]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
fix typo that put too many include paths for most people
[lyx.git] / src / gettext.C
index 22a135152b6ef812f96d5752db6878aa8463b801..e65081c71cd10a286db1ce4881e7e0006d27825f 100644 (file)
@@ -1,9 +1,8 @@
-// -*- C++ -*-
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *        
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
 
 #include <config.h>
 
-#ifdef ENABLE_NLS
+#ifdef HAVE_LOCALE_H
+#  include <locale.h>
+#endif
 
 #include "LString.h"
 
+#include <boost/smart_ptr.hpp>
+
+#ifdef ENABLE_NLS
+
 #  if HAVE_GETTEXT
 #    include <libintl.h>      // use the header already in the system *EK*
-#    ifdef HAVE_LOCALE_H
-#      include <locale.h>        // for LC_MESSAGES
-#    endif
 #  else
 #    include "../intl/libintl.h"
 #  endif
@@ -36,33 +38,34 @@ char const * _(char const * str)
 }
 
 
-string const _(string const & str) 
+string const _(string const & str)
 {
        if (!str.empty()) {
                int const s = str.length();
-               char * tmp = new char[s + 1];
-               str.copy(tmp, s);
+               boost::scoped_array<char> tmp(new char[s + 1]);
+               str.copy(tmp.get(), s);
                tmp[s] = '\0';
-               string ret(gettext(tmp));
-               delete [] tmp;
+               string const ret(gettext(tmp.get()));
                return ret;
-       }
-       else
+       } else {
                return string();
+       }
 }
 
+
 void locale_init()
 {
 #  ifdef HAVE_LC_MESSAGES
        setlocale(LC_MESSAGES, "");
+#  endif
        setlocale(LC_CTYPE, "");
        setlocale(LC_NUMERIC, "C");
-#  endif
 }
 
+
 void gettext_init(string const & localedir)
 {
-       bindtextdomain(PACKAGE, localedir.c_str()); 
+       bindtextdomain(PACKAGE, localedir.c_str());
        textdomain(PACKAGE);
 }
 
@@ -71,8 +74,10 @@ void gettext_init(string const & localedir)
 
 void locale_init()
 {
+       setlocale(LC_NUMERIC, "C");
 }
 
+
 void gettext_init(string const &)
 {
 }