* 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:
Jürgen Spitzmüller 2008-01-10 16:09:01 +00:00
parent a84fa1ce00
commit 63c45ec226
10 changed files with 15 additions and 25 deletions

View File

@ -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));
}

View File

@ -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;
///

View File

@ -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));
}

View File

@ -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 &);
///

View File

@ -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));
}

View File

@ -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;
///

View File

@ -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));
}

View File

@ -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

View File

@ -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));
}

View File

@ -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