mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
* src/insets/InsetCitation.{cpp,h}:
* src/insets/InsetHyperlink.{cpp,h}: * src/insets/InsetRef.{cpp,h}: * src/insets/InsetSpace.{cpp,h}: * src/insets/InsetSpecialChar.{cpp,h}: - fix textString member (bug 4472). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22480 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a84fa1ce00
commit
63c45ec226
@ -490,10 +490,9 @@ int InsetCitation::docbook(Buffer const &, odocstream & os,
|
||||
}
|
||||
|
||||
|
||||
int InsetCitation::textString(Buffer const & buf, odocstream & os,
|
||||
OutputParams const & op) const
|
||||
void InsetCitation::textString(Buffer const & buf, odocstream & os) const
|
||||
{
|
||||
return plaintext(buf, os, op);
|
||||
plaintext(buf, os, OutputParams(0));
|
||||
}
|
||||
|
||||
|
||||
|
@ -45,8 +45,7 @@ public:
|
||||
int docbook(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
/// the string that is passed to the TOC
|
||||
virtual int textString(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
void textString(Buffer const &, odocstream &) const;
|
||||
///
|
||||
void validate(LaTeXFeatures &) const;
|
||||
///
|
||||
|
@ -157,10 +157,9 @@ int InsetHyperlink::docbook(Buffer const &, odocstream & os,
|
||||
}
|
||||
|
||||
|
||||
int InsetHyperlink::textString(Buffer const & buf, odocstream & os,
|
||||
OutputParams const & op) const
|
||||
void InsetHyperlink::textString(Buffer const & buf, odocstream & os) const
|
||||
{
|
||||
return plaintext(buf, os, op);
|
||||
plaintext(buf, os, OutputParams(0));
|
||||
}
|
||||
|
||||
|
||||
|
@ -47,8 +47,7 @@ public:
|
||||
int docbook(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
/// the string that is passed to the TOC
|
||||
virtual int textString(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
void textString(Buffer const &, odocstream &) const;
|
||||
///
|
||||
static CommandInfo const * findInfo(std::string const &);
|
||||
///
|
||||
|
@ -145,10 +145,9 @@ int InsetRef::docbook(Buffer const & buf, odocstream & os,
|
||||
}
|
||||
|
||||
|
||||
int InsetRef::textString(Buffer const & buf, odocstream & os,
|
||||
OutputParams const & op) const
|
||||
void InsetRef::textString(Buffer const & buf, odocstream & os) const
|
||||
{
|
||||
return plaintext(buf, os, op);
|
||||
plaintext(buf, os, OutputParams(0));
|
||||
}
|
||||
|
||||
|
||||
|
@ -53,8 +53,7 @@ public:
|
||||
///
|
||||
int docbook(Buffer const &, odocstream &, OutputParams const &) const;
|
||||
/// the string that is passed to the TOC
|
||||
virtual int textString(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
void textString(Buffer const &, odocstream &) const;
|
||||
///
|
||||
void validate(LaTeXFeatures & features) const;
|
||||
///
|
||||
|
@ -225,10 +225,9 @@ int InsetSpace::docbook(Buffer const &, odocstream & os,
|
||||
}
|
||||
|
||||
|
||||
int InsetSpace::textString(Buffer const & buf, odocstream & os,
|
||||
OutputParams const & op) const
|
||||
void InsetSpace::textString(Buffer const & buf, odocstream & os) const
|
||||
{
|
||||
return plaintext(buf, os, op);
|
||||
plaintext(buf, os, OutputParams(0));
|
||||
}
|
||||
|
||||
|
||||
|
@ -73,8 +73,7 @@ public:
|
||||
int docbook(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
/// the string that is passed to the TOC
|
||||
virtual int textString(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
void textString(Buffer const &, odocstream &) const;
|
||||
///
|
||||
InsetCode lyxCode() const { return SPACE_CODE; }
|
||||
/// We don't need \begin_inset and \end_inset
|
||||
|
@ -287,10 +287,9 @@ int InsetSpecialChar::docbook(Buffer const &, odocstream & os,
|
||||
}
|
||||
|
||||
|
||||
int InsetSpecialChar::textString(Buffer const & buf, odocstream & os,
|
||||
OutputParams const & op) const
|
||||
void InsetSpecialChar::textString(Buffer const & buf, odocstream & os) const
|
||||
{
|
||||
return plaintext(buf, os, op);
|
||||
plaintext(buf, os, OutputParams(0));
|
||||
}
|
||||
|
||||
|
||||
|
@ -69,8 +69,7 @@ public:
|
||||
int docbook(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
/// the string that is passed to the TOC
|
||||
virtual int textString(Buffer const &, odocstream &,
|
||||
OutputParams const &) const;
|
||||
void textString(Buffer const &, odocstream &) const;
|
||||
///
|
||||
InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
|
||||
/// We don't need \begin_inset and \end_inset
|
||||
|
Loading…
Reference in New Issue
Block a user