]> git.lyx.org Git - features.git/blobdiff - src/BufferList.cpp
Cosmetics.
[features.git] / src / BufferList.cpp
index 5143c1312666886941c88c782148ffde38847ce4..c0700b4f879ccaf74bf9a9146dfdb5213fdb54b9 100644 (file)
@@ -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);