]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / inseturl.h
index a509ea60e1250f17d8e7b9c8601cd12a110444b0..124600e091507125c60eaf27c6a2e02cf538002d 100644 (file)
@@ -15,6 +15,9 @@
 
 #include "insetcommand.h"
 
+
+namespace lyx {
+
 class LaTeXFeatures;
 
 /** The url inset
@@ -29,22 +32,22 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       lyx::docstring const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        bool display() const { return false; }
        ///
-       int latex(Buffer const &, std::ostream &,
+       int latex(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, lyx::odocstream &,
+       int plaintext(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       int docbook(Buffer const &, std::ostream &,
+       int docbook(Buffer const &, odocstream &,
                    OutputParams const &) const;
        /// the string that is passed to the TOC
-       virtual int textString(Buffer const &, lyx::odocstream &,
+       virtual int textString(Buffer const &, odocstream &,
                OutputParams const &) const;
 private:
        virtual std::auto_ptr<InsetBase> doClone() const {
@@ -52,4 +55,7 @@ private:
        }
 };
 
+
+} // namespace lyx
+
 #endif