]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt2/QLPainter.h
Rename EnumLColor as LColor_color.
[features.git] / src / frontends / qt2 / QLPainter.h
index ff3fc3d4fb0d117850f262a521dcf25f48af6e1d..e24a56335ba33edb32688740a69a55acfc97c158 100644 (file)
@@ -45,7 +45,7 @@ public:
        virtual Painter & line(
                int x1, int y1,
                int x2, int y2,
-               EnumLColor,
+               LColor_color,
                line_style = line_solid,
                line_width = line_thin);
 
@@ -59,7 +59,7 @@ public:
                int const * xp,
                int const * yp,
                int np,
-               EnumLColor,
+               LColor_color,
                line_style = line_solid,
                line_width = line_thin);
 
@@ -67,7 +67,7 @@ public:
        virtual Painter & rectangle(
                int x, int y,
                int w, int h,
-               EnumLColor,
+               LColor_color,
                line_style = line_solid,
                line_width = line_thin);
 
@@ -75,26 +75,26 @@ public:
        virtual Painter & fillRectangle(
                int x, int y,
                int w, int h,
-               EnumLColor);
+               LColor_color);
 
        /// draw a filled (irregular) polygon
        virtual Painter & fillPolygon(
                int const * xp,
                int const * yp,
                int np,
-               EnumLColor);
+               LColor_color);
 
        /// draw an arc
        virtual Painter & arc(
                int x, int y,
                unsigned int w, unsigned int h,
                int a1, int a2,
-               EnumLColor);
+               LColor_color);
 
        /// draw a pixel
        virtual Painter & point(
                int x, int y,
-               EnumLColor);
+               LColor_color);
 
        /// draw an image from the image cache
        virtual Painter & image(int x, int y,
@@ -121,7 +121,7 @@ private:
                QString const & str, LyXFont const & f);
 
        /// set pen parameters
-       QPainter & setPen(EnumLColor c,
+       QPainter & setPen(LColor_color c,
                line_style ls = line_solid,
                line_width lw = line_thin);