]> git.lyx.org Git - lyx.git/blobdiff - src/WorkArea.C
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / WorkArea.C
index 033c35eddd0a5016ecb8840bd62d8f401eb36273..e10cb129f1c4ed8a3a170919d08f3402d16a5f1e 100644 (file)
@@ -18,7 +18,9 @@
 #include "WorkArea.h"
 #include "debug.h"
 #include "support/lstrings.h"
+#if 0
 #include "BufferView.h"
+#endif
 #include "LyXView.h"
 #include "lyxfunc.h"
 
@@ -59,8 +61,16 @@ extern "C" {
 
 
 
-WorkArea::WorkArea(BufferView * o, int xpos, int ypos, int width, int height)
-       : owner_(o), workareapixmap(0), painter_(*this)
+WorkArea::WorkArea(
+#if 0
+       BufferView * o,
+#endif
+       int xpos, int ypos, int width, int height)
+       :
+#if 0
+       owner_(o),
+#endif
+       workareapixmap(0), painter_(*this)
 {
        fl_freeze_all_forms();
 
@@ -261,7 +271,11 @@ void WorkArea::scroll_cb(FL_OBJECT * ob, long)
        // If we really want the accellerating scroll we can do that
        // from here. IMHO that is a waste of effort since we already
        // have other ways to move fast around in the document. (Lgb)
+#if 0
        area->owner_->scrollCB(fl_get_scrollbar_value(ob));
+#else
+       area->scrollCB(fl_get_scrollbar_value(ob));
+#endif
        waitForX();
 }