]> git.lyx.org Git - lyx.git/commitdiff
ws fixes
authorAlfredo Braunstein <abraunst@lyx.org>
Fri, 27 Feb 2004 13:06:16 +0000 (13:06 +0000)
committerAlfredo Braunstein <abraunst@lyx.org>
Fri, 27 Feb 2004 13:06:16 +0000 (13:06 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8464 a592a061-630c-0410-9148-cb99ea01b6c8

src/text.C

index 450366c39be44b964eaf007e1497c57d2a04b293..9a668d4bfc28e2c7a60e356628d520eba8b619b5 100644 (file)
@@ -1084,32 +1084,32 @@ void LyXText::prepareToPrint(ParagraphList::iterator pit, Row & row) const
                }
 
                switch (align) {
-    case LYX_ALIGN_BLOCK: {
-                               int const ns = numberOfSeparators(*pit, row);
-                               bool disp_inset = false;
-                               if (row.endpos() < pit->size()) {
-                                       InsetBase * in = pit->getInset(row.endpos());
-                                       if (in)
-                                               disp_inset = in->display();
-                               }
-                               // If we have separators, this is not the last row of a
-                               // par, does not end in newline, and is not row above a
-                               // display inset... then stretch it
-                               if (ns
-                                       && row.endpos() < pit->size()
-                                       && !pit->isNewline(row.endpos() - 1)
-                                       && !disp_inset
-                                       ) {
-                                               fill_separator = w / ns;
-                               } else if (is_rtl) {
-                                       x += w;
-                               }
-                               break;
+               case LYX_ALIGN_BLOCK: {
+                       int const ns = numberOfSeparators(*pit, row);
+                       bool disp_inset = false;
+                       if (row.endpos() < pit->size()) {
+                               InsetBase * in = pit->getInset(row.endpos());
+                               if (in)
+                                       disp_inset = in->display();
                        }
-    case LYX_ALIGN_RIGHT:
+                       // If we have separators, this is not the last row of a
+                       // par, does not end in newline, and is not row above a
+                       // display inset... then stretch it
+                       if (ns
+                           && row.endpos() < pit->size()
+                           && !pit->isNewline(row.endpos() - 1)
+                           && !disp_inset
+                               ) {
+                               fill_separator = w / ns;
+                       } else if (is_rtl) {
+                               x += w;
+                       }
+                       break;
+               }
+               case LYX_ALIGN_RIGHT:
                        x += w;
                        break;
-    case LYX_ALIGN_CENTER:
+               case LYX_ALIGN_CENTER:
                        x += w / 2;
                        break;
                }