From e1ba93a068d8f4b8bc5a677545605e95cbab85cc Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Mon, 14 Jun 2010 21:38:38 +0000 Subject: [PATCH] *BufferView: Remove default parameter value. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34657 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/BufferView.cpp | 6 +++--- src/BufferView.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/BufferView.cpp b/src/BufferView.cpp index 42d6abbed2..7415238288 100644 --- a/src/BufferView.cpp +++ b/src/BufferView.cpp @@ -587,7 +587,7 @@ void BufferView::scrollDocView(int value) // cut off at the top if (value <= d->scrollbarParameters_.min) { DocIterator dit = doc_iterator_begin(&buffer_); - showCursor(dit); + showCursor(dit, false); LYXERR(Debug::SCROLLING, "scroll to top"); return; } @@ -596,7 +596,7 @@ void BufferView::scrollDocView(int value) if (value >= d->scrollbarParameters_.max) { DocIterator dit = doc_iterator_end(&buffer_); dit.backwardPos(); - showCursor(dit); + showCursor(dit, false); LYXERR(Debug::SCROLLING, "scroll to bottom"); return; } @@ -621,7 +621,7 @@ void BufferView::scrollDocView(int value) DocIterator dit = doc_iterator_begin(&buffer_); dit.pit() = i; LYXERR(Debug::SCROLLING, "value = " << value << " -> scroll to pit " << i); - showCursor(dit); + showCursor(dit, false); } diff --git a/src/BufferView.h b/src/BufferView.h index eaf063182b..8d48301007 100644 --- a/src/BufferView.h +++ b/src/BufferView.h @@ -159,7 +159,7 @@ public: /// This method will automatically scroll and update the BufferView /// if needed. /// \param recenter Whether the cursor should be centered on screen - void showCursor(DocIterator const & dit, bool recenter = false); + void showCursor(DocIterator const & dit, bool recenter); /// Scroll to the cursor. void scrollToCursor(); /// Scroll to the cursor. -- 2.39.2