]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpace.h
More requires --> required, for C++2a.
[lyx.git] / src / insets / InsetSpace.h
index b5a628a4561326581105297fe15b692d40a3b9a1..2784022955b6e80adfe84234ced1eec780394325 100644 (file)
@@ -74,7 +74,7 @@ struct InsetSpaceParams {
                CUSTOM_PROTECTED
        };
        ///
-       InsetSpaceParams(bool m = false) : kind(NORMAL), math(m) {}
+       explicit InsetSpaceParams(bool m = false) : kind(NORMAL), math(m) {}
        ///
        void write(std::ostream & os) const;
        ///
@@ -135,11 +135,11 @@ public:
        ///
        void toString(odocstream &) const;
        ///
-       void forOutliner(docstring &, size_t) const;
+       void forOutliner(docstring &, size_t const, bool const) const;
        ///
        bool hasSettings() const { return true; }
        ///
-       bool clickable(int, int) const { return true; }
+       bool clickable(BufferView const &, int, int) const { return true; }
        ///
        InsetCode lyxCode() const { return SPACE_CODE; }
        /// does this inset try to use all available space (like \\hfill does)?