summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxrect_p.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-06-04 02:32:47 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-06-04 02:32:47 (GMT)
commitf7cf2cdc0b6c83a639d155987f871f7932c1d845 (patch)
treeaed1571715d63aef441b2e7af1478dce16dfb5fe /src/declarative/fx/qfxrect_p.h
parentbf50ad866fc787b7787fd102566993c284622112 (diff)
downloadQt-f7cf2cdc0b6c83a639d155987f871f7932c1d845.zip
Qt-f7cf2cdc0b6c83a639d155987f871f7932c1d845.tar.gz
Qt-f7cf2cdc0b6c83a639d155987f871f7932c1d845.tar.bz2
Cleanup private class member names
Diffstat (limited to 'src/declarative/fx/qfxrect_p.h')
-rw-r--r--src/declarative/fx/qfxrect_p.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/declarative/fx/qfxrect_p.h b/src/declarative/fx/qfxrect_p.h
index 8cafcbb..6d11917 100644
--- a/src/declarative/fx/qfxrect_p.h
+++ b/src/declarative/fx/qfxrect_p.h
@@ -69,13 +69,13 @@ class QFxRectPrivate : public QFxItemPrivate
public:
QFxRectPrivate()
- : gradient(0), _pen(0), _radius(0)
+ : gradient(0), pen(0), radius(0)
{
}
~QFxRectPrivate()
{
- delete _pen;
+ delete pen;
}
void init()
@@ -83,24 +83,24 @@ public:
}
#if defined(QFX_RENDER_OPENGL)
- GLTexture _rectTexture;
+ GLTexture rectTexture;
#endif
QColor getColor();
- QColor _color;
+ QColor color;
QFxGradient *gradient;
- QColor _tintColor;
- QFxPen *pen() {
- if (!_pen) {
+ QColor tintColor;
+ QFxPen *getPen() {
+ if (!pen) {
Q_Q(QFxRect);
- _pen = new QFxPen;
- QObject::connect(_pen, SIGNAL(updated()), q, SLOT(doUpdate()));
+ pen = new QFxPen;
+ QObject::connect(pen, SIGNAL(updated()), q, SLOT(doUpdate()));
}
- return _pen;
+ return pen;
}
- QFxPen *_pen;
- qreal _radius;
+ QFxPen *pen;
+ qreal radius;
#if defined(QFX_RENDER_QPAINTER)
- QPixmap _rectImage;
+ QPixmap rectImage;
#endif
};