mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
remove unneeded in_update_ members
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7299 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e62ce55f8c
commit
52b22859af
@ -1,4 +1,9 @@
|
||||
|
||||
2003-07-17 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* insettext.[Ch]:
|
||||
* insettabular.[Ch]: remove unneeded in_update_ members
|
||||
|
||||
2003-07-17 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* insetcollapsable.C:
|
||||
|
@ -167,7 +167,6 @@ InsetTabular::InsetTabular(Buffer const & buf, int rows, int columns)
|
||||
actrow = actcell = 0;
|
||||
clearSelection();
|
||||
need_update = INIT;
|
||||
in_update = false;
|
||||
in_reset_pos = 0;
|
||||
inset_x = 0;
|
||||
inset_y = 0;
|
||||
@ -186,7 +185,6 @@ InsetTabular::InsetTabular(InsetTabular const & tab)
|
||||
actrow = actcell = 0;
|
||||
clearSelection();
|
||||
need_update = INIT;
|
||||
in_update = false;
|
||||
in_reset_pos = 0;
|
||||
inset_x = 0;
|
||||
inset_y = 0;
|
||||
|
@ -345,8 +345,6 @@ private:
|
||||
///
|
||||
mutable UpdateCodes need_update;
|
||||
///
|
||||
bool in_update;
|
||||
///
|
||||
mutable int in_reset_pos;
|
||||
};
|
||||
|
||||
|
@ -125,7 +125,7 @@ void InsetText::restoreLyXTextState() const
|
||||
|
||||
|
||||
InsetText::InsetText(BufferParams const & bp)
|
||||
: UpdatableInset(), in_update(false), text_(0, this)
|
||||
: UpdatableInset(), text_(0, this)
|
||||
{
|
||||
paragraphs.push_back(Paragraph());
|
||||
paragraphs.begin()->layout(bp.getLyXTextClass().defaultLayout());
|
||||
@ -136,7 +136,7 @@ InsetText::InsetText(BufferParams const & bp)
|
||||
|
||||
|
||||
InsetText::InsetText(InsetText const & in)
|
||||
: UpdatableInset(in), in_update(false), text_(0, this)
|
||||
: UpdatableInset(in), text_(0, this)
|
||||
{
|
||||
init(&in);
|
||||
}
|
||||
|
@ -362,8 +362,6 @@ private:
|
||||
mutable int frame_y;
|
||||
mutable int frame_w;
|
||||
mutable int frame_h;
|
||||
///
|
||||
bool in_update; /* as update is not reentrant! */
|
||||
mutable bool in_insetAllowed;
|
||||
///
|
||||
// these are used to check for mouse movement in Motion selection code
|
||||
|
@ -178,9 +178,6 @@ void RowPainter::paintInset(pos_type const pos)
|
||||
|
||||
Assert(inset);
|
||||
|
||||
#warning inset->update FIXME
|
||||
//inset->update(perv(bv_), false);
|
||||
|
||||
PainterInfo pi(perv(bv_));
|
||||
pi.base.font = getFont(pos);
|
||||
int const w = inset->width(perv(bv_), pi.base.font);
|
||||
|
Loading…
Reference in New Issue
Block a user