]> git.lyx.org Git - lyx.git/commitdiff
Style.
authorRichard Heck <rgheck@comcast.net>
Sat, 9 May 2009 21:58:16 +0000 (21:58 +0000)
committerRichard Heck <rgheck@comcast.net>
Sat, 9 May 2009 21:58:16 +0000 (21:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29601 a592a061-630c-0410-9148-cb99ea01b6c8

src/Text3.cpp

index 6b2bce0dcc6037d34cc94344c208954061b7a440..dc0025fd097ac5c042e200dcafd26ac15bbea591 100644 (file)
@@ -335,7 +335,7 @@ static void outline(OutlineOp mode, Cursor & cur)
 
        // Do we need to set insets' buffer_ members, because we copied
        // some stuff? We'll assume we do and reset it otherwise.
-       bool setBuffers = true;
+       bool set_buffers = true;
 
        switch (mode) {
                case OutlineUp: {
@@ -406,7 +406,7 @@ static void outline(OutlineOp mode, Cursor & cur)
                                        }
                                }
                        }
-                       setBuffers = false;
+                       set_buffers = false;
                        break;
                }
                case OutlineOut: {
@@ -426,11 +426,11 @@ static void outline(OutlineOp mode, Cursor & cur)
                                        }
                                }
                        }
-                       setBuffers = false;
+                       set_buffers = false;
                        break;
                }
        }
-       if (setBuffers)
+       if (set_buffers)
                // FIXME This only really needs doing for the newly introduced 
                // paragraphs. Something like:
                //      pit_type const numpars = distance(start, finish);