]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.C
Fix bug 2485 and crash on middle mouse paste on math
[lyx.git] / src / BufferView.C
index 75544d062319dc9cb6f3d831b609f71f90ae4f23..151d1154553daae676e6426ade0d22a301723576 100644 (file)
@@ -188,6 +188,10 @@ bool BufferView::isSavedPosition(unsigned int i)
        return pimpl_->isSavedPosition(i);
 }
 
+void BufferView::saveSavedPositions()
+{
+       return pimpl_->saveSavedPositions();
+}
 
 void BufferView::switchKeyMap()
 {
@@ -369,6 +373,18 @@ void BufferView::putSelectionAt(DocIterator const & cur,
 }
 
 
+bool const BufferView::repaintAll() const
+{
+       return pimpl_->repaintAll();
+}
+
+
+void const BufferView::repaintAll(bool r) const
+{
+       pimpl_->repaintAll(r);
+}
+
+
 LCursor & BufferView::cursor()
 {
        return pimpl_->cursor_;