]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.C
get rid of LYX_LIBS
[lyx.git] / src / BufferView.C
index 4caf746d9521d7ed8ba3cd41aae0ae0818339e50..5a3da684dfce3eac0a99d244dfe0fe5882ed5f29 100644 (file)
@@ -17,7 +17,6 @@
 #include "BufferView.h"
 #include "BufferView_pimpl.h"
 #include "lyxtext.h"
-#include "WorkArea.h"
 #include "lyxscreen.h"
 
 
@@ -54,12 +53,6 @@ LyXView * BufferView::owner() const
 }
 
 
-void BufferView::pushIntoUpdateList(Inset * i)
-{
-       pimpl_->updatelist.push(i);
-}
-
-
 Painter & BufferView::painter() 
 {
        return pimpl_->painter();
@@ -90,9 +83,9 @@ void BufferView::redraw()
 }
 
 
-void BufferView::fitCursor(LyXText * text)
+void BufferView::fitCursor()
 {
-       pimpl_->fitCursor(text);
+       pimpl_->fitCursor();
 }
 
 
@@ -114,10 +107,9 @@ void BufferView::scrollCB(double value)
 }
 
 
-Inset * BufferView::checkInsetHit(LyXText * text, int & x, int & y,
-                                 unsigned int button)
+Inset * BufferView::checkInsetHit(LyXText * text, int & x, int & y)
 {
-       return pimpl_->checkInsetHit(text, x, y, button);
+       return pimpl_->checkInsetHit(text, x, y);
 }