mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
some ws
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6202 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5931d72922
commit
fdaf203c12
@ -234,7 +234,7 @@ public:
|
||||
///
|
||||
void parOwner(Paragraph * par) { par_owner_ = par; }
|
||||
///
|
||||
Paragraph * parOwner() const {return par_owner_; }
|
||||
Paragraph * parOwner() const { return par_owner_; }
|
||||
///
|
||||
void setBackgroundColor(LColor::color);
|
||||
///
|
||||
@ -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);
|
||||
|
@ -104,6 +104,7 @@ void InsetText::saveLyXTextState(LyXText * t) const
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void InsetText::restoreLyXTextState(BufferView * bv, LyXText * t) const
|
||||
{
|
||||
if (sstate.lpar) {
|
||||
|
@ -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());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user