Remove figinset_canvas cruft.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3741 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-03-13 12:25:35 +00:00
parent ff6f729817
commit ad6d9e444b
3 changed files with 4 additions and 14 deletions

View File

@ -1,3 +1,7 @@
2002-03-13 Angus Leeming <a.leeming@ic.ac.uk>
* WorkArea.[Ch]: remove figinset_canvas cruft.
2002-03-12 Lars Gullik Bjønnes <larsbj@birdstep.com>
* lyxtextclass.C (operator): add one item cache optimization.

View File

@ -39,8 +39,6 @@ using std::endl;
using std::abs;
using std::hex;
FL_OBJECT * figinset_canvas;
namespace {
inline
@ -84,8 +82,6 @@ WorkArea::WorkArea(int xpos, int ypos, int width, int height)
{
fl_freeze_all_forms();
figinset_canvas = 0;
if (lyxerr.debugging(Debug::WORKAREA))
lyxerr << "Creating work area: +"
<< xpos << '+' << ypos << ' '
@ -94,14 +90,6 @@ WorkArea::WorkArea(int xpos, int ypos, int width, int height)
FL_OBJECT * obj;
int const bw = int(abs(fl_get_border_width()));
// We really want to get rid of figinset_canvas.
::figinset_canvas = figinset_canvas = obj =
fl_add_canvas(FL_NORMAL_CANVAS,
xpos + 1, ypos + 1, 1, 1, "");
fl_set_object_boxtype(obj, FL_NO_BOX);
fl_set_object_resize(obj, FL_RESIZE_ALL);
fl_set_object_gravity(obj, NorthWestGravity, NorthWestGravity);
// a box
if (lyxerr.debugging(Debug::WORKAREA))
lyxerr << "\tbackground box: +"

View File

@ -151,8 +151,6 @@ private:
Pixmap workareapixmap;
///
Painter painter_;
///
FL_OBJECT * figinset_canvas;
/// if we call redraw with true needed for locking-insets
bool screen_cleared;
};