git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6202 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2003-02-18 16:58:16 +00:00
parent 5931d72922
commit fdaf203c12
3 changed files with 11 additions and 18 deletions

View File

@ -262,19 +262,12 @@ public:
/// try to get a inset pointer from it's id if we have
/// an inset to give back!
virtual Inset * getInsetFromID(int /* id */) const {
return 0;
}
virtual Inset * getInsetFromID(int /*id*/) const { return 0; }
/// if this insets owns paragraphs (f.ex. InsetText) then it
/// should return it's very first one!
virtual Paragraph * firstParagraph() const {
return 0;
}
virtual Paragraph * firstParagraph() const { return 0; }
///
virtual Paragraph * getFirstParagraph(int /*num*/) const {
return 0;
}
virtual Paragraph * getFirstParagraph(int /*num*/) const { return 0; }
/// return the cursor if we own one otherwise giv'em just the
/// BufferView cursor to work with.
@ -495,9 +488,7 @@ public:
///
virtual void selectSelectedWord(BufferView *) {}
///
virtual void toggleSelection(BufferView *, bool /*kill_selection*/) {
return;
}
virtual void toggleSelection(BufferView *, bool /*kill_selection*/) {}
/// find the next change in the inset
virtual bool nextChange(BufferView * bv, lyx::pos_type & length);

View File

@ -104,6 +104,7 @@ void InsetText::saveLyXTextState(LyXText * t) const
}
}
void InsetText::restoreLyXTextState(BufferView * bv, LyXText * t) const
{
if (sstate.lpar) {

View File

@ -261,7 +261,7 @@ void InsetFormula::validate(LaTeXFeatures & features) const
bool InsetFormula::insetAllowed(Inset::Code code) const
{
return
(code == Inset::LABEL_CODE)
code == Inset::LABEL_CODE
|| code == Inset::REF_CODE
|| code == Inset::ERT_CODE;
}
@ -330,3 +330,4 @@ string const InsetFormula::PreviewImpl::latexString() const
parent().par_->write(wi);
return STRCONV(ls.str());
}