]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.C
Dekels tabular/textinset patches
[lyx.git] / src / BufferView.C
index 88cbba5f8f7f927f7b276d664dd3f2ce37eedb85..c2bd11863f67b973b734a24598ca01bc1460cdb6 100644 (file)
@@ -27,7 +27,6 @@ BufferView::BufferView(LyXView * o, int xpos, int ypos,
        : pimpl_(new Pimpl(this, o, xpos, ypos, width, height))
 {
        text = 0;
-       the_locking_inset = 0;
        inset_slept = false;
 }
 
@@ -142,6 +141,7 @@ void BufferView::gotoError()
 }
 
 
+#if 0
 void BufferView::enterView()
 {
        pimpl_->enterView();
@@ -196,17 +196,18 @@ void BufferView::workAreaExpose()
 {
        pimpl_->workAreaExpose();
 }
+#endif
 
 
-void BufferView::cursorPrevious()
+void BufferView::cursorPrevious(LyXText * text)
 {
-       pimpl_->cursorPrevious();
+       pimpl_->cursorPrevious(text);
 }
 
 
-void BufferView::cursorNext()
+void BufferView::cursorNext(LyXText * text)
 {
-       pimpl_->cursorNext();
+       pimpl_->cursorNext(text);
 }