X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetHyperlink.h;h=90ae05b94f7413f721373c68ccdf102747937abe;hb=48b1e8a0aca2f3f3faa8f1f800568e47792ba9a0;hp=6bc0c64165cfd390e37238224a20388c69f04164;hpb=8b00b355ca7012ca703c78a8be89193ac6435fcb;p=lyx.git diff --git a/src/insets/InsetHyperlink.h b/src/insets/InsetHyperlink.h index 6bc0c64165..90ae05b94f 100644 --- a/src/insets/InsetHyperlink.h +++ b/src/insets/InsetHyperlink.h @@ -24,7 +24,7 @@ class InsetHyperlink : public InsetCommand public: /// InsetHyperlink(Buffer * buf, InsetCommandParams const &); - + /// \name Public functions inherited from Inset class //@{ /// @@ -32,13 +32,13 @@ public: /// bool hasSettings() const { return true; } /// - bool forceLTR() const { return true; } + bool forceLTR(OutputParams const &) const { return true; } /// bool isInToc() const { return true; } /// void toString(odocstream &) const; /// - void forOutliner(docstring &, size_t) const; + void forOutliner(docstring &, size_t const, bool const) const; /// docstring toolTip(BufferView const & bv, int x, int y) const; /// @@ -51,22 +51,22 @@ public: int plaintext(odocstringstream & ods, OutputParams const & op, size_t max_length = INT_MAX) const; /// - int docbook(odocstream &, OutputParams const &) const; + void docbook(XMLStream &, OutputParams const &) const; /// - docstring xhtml(XHTMLStream &, OutputParams const &) const; + docstring xhtml(XMLStream &, OutputParams const &) const; //@} /// \name Static public methods obligated for InsetCommand derived classes //@{ /// - static bool isCompatibleCommand(std::string const & s) + static bool isCompatibleCommand(std::string const & s) { return s == "href"; } /// static std::string defaultCommand() { return "href"; } /// static ParamInfo const & findInfo(std::string const &); //@} - + private: /// \name Private functions inherited from Inset class //@{