*BufferView: Remove default parameter value.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34657 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2010-06-14 21:38:38 +00:00
parent 94c113d24f
commit e1ba93a068
2 changed files with 4 additions and 4 deletions

View File

@ -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);
}

View File

@ -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.