X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBufferView.C;h=68a19e76b251f04324946ce3636f14c56c201d4e;hb=98c966c64594611e469313314abd1e59524adb4a;hp=5a3da684dfce3eac0a99d244dfe0fe5882ed5f29;hpb=4b07057b7eaf1b91da715f4f266f1395f7d9bf7c;p=lyx.git diff --git a/src/BufferView.C b/src/BufferView.C index 5a3da684df..68a19e76b2 100644 --- a/src/BufferView.C +++ b/src/BufferView.C @@ -1,8 +1,8 @@ /* This file is part of - * ====================================================== - * + * ====================================================== + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich * Copyright 1995-2001 The LyX Team. * @@ -53,7 +53,7 @@ LyXView * BufferView::owner() const } -Painter & BufferView::painter() +Painter & BufferView::painter() { return pimpl_->painter(); } @@ -83,9 +83,9 @@ void BufferView::redraw() } -void BufferView::fitCursor() +bool BufferView::fitCursor() { - pimpl_->fitCursor(); + return pimpl_->fitCursor(); } @@ -199,19 +199,19 @@ void BufferView::insetUnlock() bool BufferView::focus() const { - return pimpl_->focus(); + return pimpl_->focus(); } void BufferView::focus(bool f) { - pimpl_->focus(f); + pimpl_->focus(f); } bool BufferView::active() const { - return pimpl_->active(); + return pimpl_->active(); } @@ -221,7 +221,7 @@ int BufferView::workWidth() const } -bool BufferView::belowMouse() const +bool BufferView::belowMouse() const { return pimpl_->belowMouse(); } @@ -251,7 +251,7 @@ void BufferView::toggleToggle() } -void BufferView::center() +void BufferView::center() { pimpl_->center(); }