]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
OK I'll try guii1 again ...
[lyx.git] / src / gettext.C
index d8b9b96bc6e47cd3074ed7bab51e068800ce8c8e..1712961c45d324b6f501fd6f92d0133ac0781c16 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *        
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -16,7 +16,7 @@
 
 #include "LString.h"
 
-#include <boost/smart_ptr.hpp>
+#include <boost/scoped_array.hpp>
 
 #ifdef ENABLE_NLS
 
@@ -38,7 +38,7 @@ char const * _(char const * str)
 }
 
 
-string const _(string const & str) 
+string const _(string const & str)
 {
        if (!str.empty()) {
                int const s = str.length();
@@ -65,7 +65,7 @@ void locale_init()
 
 void gettext_init(string const & localedir)
 {
-       bindtextdomain(PACKAGE, localedir.c_str()); 
+       bindtextdomain(PACKAGE, localedir.c_str());
        textdomain(PACKAGE);
 }