summaryrefslogtreecommitdiff
path: root/utils/themeeditor/graphics/rbprogressbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/graphics/rbprogressbar.cpp')
-rw-r--r--utils/themeeditor/graphics/rbprogressbar.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/utils/themeeditor/graphics/rbprogressbar.cpp b/utils/themeeditor/graphics/rbprogressbar.cpp
index 206a835252..76cfe5601b 100644
--- a/utils/themeeditor/graphics/rbprogressbar.cpp
+++ b/utils/themeeditor/graphics/rbprogressbar.cpp
@@ -27,7 +27,7 @@
27RBProgressBar::RBProgressBar(RBViewport *parent, const RBRenderInfo &info, 27RBProgressBar::RBProgressBar(RBViewport *parent, const RBRenderInfo &info,
28 int paramCount, skin_tag_parameter *params, 28 int paramCount, skin_tag_parameter *params,
29 bool pv) 29 bool pv)
30 :QGraphicsItem(parent) 30 :RBMovable(parent)
31{ 31{
32 /* First we set everything to defaults */ 32 /* First we set everything to defaults */
33 bitmap = 0; 33 bitmap = 0;
@@ -117,4 +117,11 @@ void RBProgressBar::paint(QPainter *painter,
117 { 117 {
118 painter->fillRect(size, color); 118 painter->fillRect(size, color);
119 } 119 }
120
121 RBMovable::paint(painter, option, widget);
122}
123
124void RBProgressBar::saveGeometry()
125{
126
120} 127}