]> git.lyx.org Git - features.git/commitdiff
Whitespace correction after rev 17639
authorAndré Pönitz <poenitz@gmx.net>
Fri, 30 Mar 2007 05:30:23 +0000 (05:30 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Fri, 30 Mar 2007 05:30:23 +0000 (05:30 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17646 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QLPainter.C

index a9b3bef2ed6d07ad4923d2812126fe419a4d78cc..680a1bf8b7e342d6760b2857a939208313c902c0 100644 (file)
@@ -114,11 +114,11 @@ void QLPainter::lines(int const * xp, int const * yp, int np,
        // Must use new as np is not known at compile time.
        boost::scoped_array<QPoint> points(new QPoint[np]);
 
-  bool antialias = false;
+       bool antialias = false;
        for (int i = 0; i < np; ++i) {
                points[i].setX(xp[i]);
                points[i].setY(yp[i]);
-               if(i != 0) 
+               if (i != 0) 
                        antialias |= xp[i-1] != xp[i] && yp[i-1] != yp[i];
        }
 
@@ -286,4 +286,3 @@ int QLPainter::text(int x, int y, docstring const & s,
 } // namespace frontend
 } // namespace lyx
 
-