]> git.lyx.org Git - lyx.git/blobdiff - src/Messages.h
adjust
[lyx.git] / src / Messages.h
index 801086f19454caed47fce3e2f044870c939bad2d..cb6af76e924ec3da72cf46d072407057b778ce7b 100644 (file)
@@ -23,13 +23,15 @@ class Messages {
 public:
        /// messages in the language \p l.
        /// If \p l is empty, the language will be defined by the environment.
-       Messages(std::string const & l = "");
+       Messages(std::string const & l = std::string());
        ///
        docstring const get(std::string const & msg) const;
+       ///
+       static void init();
 private:
        ///
        std::string lang_;
-       /// Did we warn about unavailable locale already? 
+       /// Did we warn about unavailable locale already?
        mutable bool warned_;
        ///
        typedef std::map<std::string, docstring> TranslationCache;