]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetArgument.h
Loop refactoring
[lyx.git] / src / insets / InsetArgument.h
index 933d66b32d5adc84cb0d35bdda301c5c48c0339c..d77f3ca65e27c1e0ddf8fcc47961a7abf02cd351 100644 (file)
@@ -30,7 +30,7 @@ public:
        InsetArgument(Buffer *, std::string const &);
 
        ///
-       InsetArgument const * asInsetArgument() const { return this; }
+       InsetArgument const * asInsetArgument() const override { return this; }
 
        /// Outputting the parameter of a LaTeX command
        void latexArgument(otexstream & os, OutputParams const & runparams_in,
@@ -42,59 +42,59 @@ public:
        /// \name Public functions inherited from Inset class
        //@{
        ///
-       bool hasSettings() const { return false; }
+       bool hasSettings() const override { return false; }
        ///
-       InsetCode lyxCode() const { return ARG_CODE; }
+       InsetCode lyxCode() const override { return ARG_CODE; }
        ///
-       docstring layoutName() const { return from_ascii("Argument"); }
+       docstring layoutName() const override { return from_ascii("Argument"); }
        /// Update the label string of this inset
-       void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false);
+       void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
        ///
-       void latex(otexstream &, OutputParams const &) const { }
+       void latex(otexstream &, OutputParams const &) const override { }
        ///
-       int plaintext(odocstringstream &, OutputParams const &, size_t) const { return 0; }
+       int plaintext(odocstringstream &, OutputParams const &, size_t) const override { return 0; }
        ///
-       void docbook(XMLStream &, OutputParams const &) const { return; }
+       void docbook(XMLStream &, OutputParams const &) const override { return; }
        ///
-       docstring xhtml(XMLStream &, OutputParams const &) const
+       docstring xhtml(XMLStream &, OutputParams const &) const override
                { return docstring(); }
        ///
-       void write(std::ostream & os) const;
+       void write(std::ostream & os) const override;
        ///
-       void read(Lexer & lex);
+       void read(Lexer & lex) override;
        ///
-       bool neverIndent() const { return true; }
+       bool neverIndent() const override { return true; }
        ///
-       std::string contextMenuName() const;
+       std::string contextMenuName() const override;
        ///
-       bool isPassThru() const { return pass_thru_; }
+       bool isPassThru() const override { return pass_thru_; }
        ///
-       bool isFreeSpacing() const { return free_spacing_; }
+       bool isFreeSpacing() const override { return free_spacing_; }
        ///
        bool isTocCaption() const { return is_toc_caption_; }
        ///
-       bool resetFontEdit() const { return false; }
+       bool resetFontEdit() const override { return false; }
        //@}
        /// \name Public functions inherited from InsetCollapsible class
        //@{
        ///
-       InsetLayout::InsetDecoration decoration() const;
+       InsetLayout::InsetDecoration decoration() const override;
        ///
-       FontInfo getFont() const;
+       FontInfo getFont() const override;
        ///
-       FontInfo getLabelfont() const;
+       FontInfo getLabelfont() const override;
        ///
-       ColorCode labelColor() const;
+       ColorCode labelColor() const override;
        ///
-       void setButtonLabel();
+       void setButtonLabel() override;
        //@}
        ///
        void addToToc(DocIterator const & dit, bool output_active,
-                     UpdateType utype, TocBackend & backend) const; //override
+                     UpdateType utype, TocBackend & backend) const override;
 
 private:
        ///
-       docstring toolTip(BufferView const & bv, int, int) const;
+       docstring toolTip(BufferView const & bv, int, int) const override;
        ///
        void fixParagraphLanguage(Language const *);
        ///
@@ -130,13 +130,13 @@ protected:
        /// \name Protected functions inherited from Inset class
        //@{
        ///
-       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
+       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override;
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       void doDispatch(Cursor & cur, FuncRequest & cmd) override;
        ///
-       Inset * clone() const { return new InsetArgument(*this); }
+       Inset * clone() const override { return new InsetArgument(*this); }
        /// Is the content of this inset part of the immediate (visible) text sequence?
-       bool isPartOfTextSequence() const { return false; }
+       bool isPartOfTextSequence() const override { return false; }
        //@}
 };