X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFuncStatus.h;h=02949ed0bfd0f4839288ec32e370702adffc2d03;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=b632db547185e8e3133de9229e286ba5b043c120;hpb=a6444784dca48da8b1f7723be12069b2e1dbb4c5;p=lyx.git diff --git a/src/FuncStatus.h b/src/FuncStatus.h index b632db5471..02949ed0bf 100644 --- a/src/FuncStatus.h +++ b/src/FuncStatus.h @@ -14,6 +14,9 @@ #include "support/docstring.h" + +namespace lyx { + /// The status of a function. class FuncStatus @@ -41,7 +44,7 @@ private: unsigned int v_; - lyx::docstring message_; + docstring message_; public: /// @@ -67,9 +70,12 @@ public: bool onoff(bool b) const; /// - void message(lyx::docstring const & m); + void message(docstring const & m); /// - lyx::docstring const & message() const; + docstring const & message() const; }; + +} // namespace lyx + #endif