]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetenv.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetenv.h
index 7de2ba7c464691f44b28cfb9904829bf2d8d2190..0925a20ad39a05d4dc42f4d146fbb15211fe2c4c 100644 (file)
@@ -16,6 +16,8 @@
 #include "lyxlayout_ptr_fwd.h"
 
 
+namespace lyx {
+
 class InsetEnvironment : public InsetText {
 public:
        ///
@@ -27,10 +29,10 @@ public:
        ///
        InsetBase::Code lyxCode() const { return InsetBase::ENVIRONMENT_CODE; }
        ///
-       int latex(Buffer const &, std::ostream &,
+       int latex(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       std::string const editMessage() const;
+       virtual docstring const editMessage() const;
        ///
        InsetBase::EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
@@ -47,4 +49,7 @@ private:
        LyXLayout_ptr layout_;
 };
 
+
+} // namespace lyx
+
 #endif