From d6966dd5f560d1a27de9b6cb874cdee6e11b7b55 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Sat, 9 May 2009 21:58:16 +0000 Subject: [PATCH] Style. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29601 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Text3.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Text3.cpp b/src/Text3.cpp index 6b2bce0dcc..dc0025fd09 100644 --- a/src/Text3.cpp +++ b/src/Text3.cpp @@ -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); -- 2.39.5