]> git.lyx.org Git - features.git/commitdiff
No camelBump style for local variables.
authorVincent van Ravesteijn <vfr@lyx.org>
Thu, 11 Mar 2010 19:50:04 +0000 (19:50 +0000)
committerVincent van Ravesteijn <vfr@lyx.org>
Thu, 11 Mar 2010 19:50:04 +0000 (19:50 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33719 a592a061-630c-0410-9148-cb99ea01b6c8

src/TextMetrics.cpp

index bf1b8cbac6f4d69cbc58a9406098760f0561d203..80a644905334eba3fa2f5e3e6cb55276123c7525 100644 (file)
@@ -2255,7 +2255,7 @@ void TextMetrics::drawRowSelection(PainterInfo & pi, int x, Row const & row,
 
        // go through row and draw from RTL boundary to RTL boundary
        while (cur < end) {
-               bool drawNow = false;
+               bool draw_now = false;
 
                // simplified cursorForward code below which does not
                // descend into insets and which does not go into the
@@ -2270,7 +2270,7 @@ void TextMetrics::drawRowSelection(PainterInfo & pi, int x, Row const & row,
                        // because:  ab|cDDEEFFghi -> abc|DDEEFFghi
                        ++cur.pos();
                        cur.boundary(true);
-                       drawNow = true;
+                       draw_now = true;
                } else {
                        // move right
                        ++cur.pos();
@@ -2285,7 +2285,7 @@ void TextMetrics::drawRowSelection(PainterInfo & pi, int x, Row const & row,
                        x1 = cursorX(cur.top(), cur.boundary());
                }
 
-               if (!(cur < end) || drawNow) {
+               if (!(cur < end) || draw_now) {
                        x2 = cursorX(cur.top(), cur.boundary());
                        pi.pain.fillRectangle(x + min(x1,x2), y1, abs(x2 - x1), y2 - y1,
                                Color_selection);