]> git.lyx.org Git - lyx.git/blobdiff - src/messages.h
cleanup after svn hang-up, #undef CursorShape. Should be compilable ganin now.
[lyx.git] / src / messages.h
index c4b2fa25ec225e381c1aa232799945383d7054a5..7d8829e6f89c36a14120e0e986df321aca254304 100644 (file)
 #ifndef MESSAGES_H
 #define MESSAGES_H
 
+#include "support/docstring.h"
+
 #include <boost/scoped_ptr.hpp>
 #include <string>
 
 ///
 class Messages {
 public:
-       ///
+       /// messages in the language defined by the environment
        Messages();
-       ///
+       /// messages in the language \p l
        Messages(std::string const & l);
        ///
        ~Messages();
        ///
-       std::string const get(std::string const & msg) const;
+       lyx::docstring const get(std::string const & msg) const;
 private:
        class Pimpl;
        boost::scoped_ptr<Pimpl> pimpl_;