]> git.lyx.org Git - lyx.git/blobdiff - src/toc.C
Restore the version number position on the splash screen
[lyx.git] / src / toc.C
index 154da60b1596d64eccaef8277189232fb7935b87..ac0c5b430625c5934aa585642c0aa139d5a6cb88 100644 (file)
--- a/src/toc.C
+++ b/src/toc.C
@@ -69,11 +69,12 @@ void outline(OutlineOp mode,  LCursor & cur)
                        do {
                                --dest;
                                toclevel = dest->layout()->toclevel;
-                       } while(dest != bgn && 
-                                   (toclevel == LyXLayout::NOT_IN_TOC 
-                                        || toclevel > thistoclevel));
+                       } while(dest != bgn
+                               && (toclevel == LyXLayout::NOT_IN_TOC
+                                   || toclevel > thistoclevel));
                        // Not found; do nothing
-                       if (toclevel == LyXLayout::NOT_IN_TOC || toclevel > thistoclevel)
+                       if (toclevel == LyXLayout::NOT_IN_TOC
+                           || toclevel > thistoclevel)
                                break;
                        pit_type const newpit = std::distance(bgn, dest);
                        pit_type const len = std::distance(start, finish);