From: Richard Heck Date: Tue, 15 Nov 2011 18:24:42 +0000 (+0000) Subject: Cosmetics. X-Git-Tag: 2.1.0beta1~2364 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bfad09a073b0e086c9657c7f9b90ddde960f9980;hp=4368237595e8ad29e7e6a9afe93ab50b2cab7566;p=features.git Cosmetics. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40199 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/BufferList.cpp b/src/BufferList.cpp index 5143c13126..c0700b4f87 100644 --- a/src/BufferList.cpp +++ b/src/BufferList.cpp @@ -180,8 +180,8 @@ Buffer * BufferList::next(Buffer const * buf) const if (bstore.empty()) return 0; - BufferStorage::const_iterator it = find(bstore.begin(), - bstore.end(), buf); + BufferStorage::const_iterator it = + find(bstore.begin(), bstore.end(), buf); LASSERT(it != bstore.end(), /**/); ++it; Buffer * nextbuf = (it == bstore.end()) ? bstore.front() : *it; @@ -195,8 +195,8 @@ Buffer * BufferList::previous(Buffer const * buf) const if (bstore.empty()) return 0; - BufferStorage::const_iterator it = find(bstore.begin(), - bstore.end(), buf); + BufferStorage::const_iterator it = + find(bstore.begin(), bstore.end(), buf); LASSERT(it != bstore.end(), /**/); Buffer * previousbuf = (it == bstore.begin()) ? bstore.back() : *(it - 1);