]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
- Link against qt-mt333.lib which is what the current qt3 cvs produces
[lyx.git] / src / gettext.C
index 6165efb3fbb91e3938d5585a3137e2bab97f879c..2f08de503833626e30be66e33c614ec3cd3fe1d3 100644 (file)
@@ -1,25 +1,27 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file src/gettext.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #include <config.h>
 
+#include "gettext.h"
 #include "messages.h"
-#include "LString.h"
-#include "support/LAssert.h"
 
-#include <boost/scoped_ptr.hpp>
 
 #ifdef HAVE_LOCALE_H
 #  include <locale.h>
 #endif
 
+using std::string;
+
+
 namespace {
 
 Messages & getLyXMessages()
@@ -32,12 +34,6 @@ Messages & getLyXMessages()
 } // anon namespace
 
 
-char const * _(char const * str)
-{
-       return getLyXMessages().get(str).c_str();
-}
-
-
 string const _(string const & str)
 {
        return getLyXMessages().get(str);