videocollection/tsrc/stubs/inc/hbgroupbox.h
changeset 17 69946d1824c4
parent 15 cf5481c2bc0b
--- a/videocollection/tsrc/stubs/inc/hbgroupbox.h	Fri Apr 16 14:59:52 2010 +0300
+++ b/videocollection/tsrc/stubs/inc/hbgroupbox.h	Mon May 03 12:32:50 2010 +0300
@@ -25,20 +25,21 @@
     Q_OBJECT
 
 public:
-    HbGroupBox(QGraphicsItem *parent = 0) : HbWidget(parent) {};
+    HbGroupBox(QGraphicsItem *parent = 0) : HbWidget(parent), mText(QString()) {};
     HbGroupBox( const QString &titleText, QGraphicsItem *parent = 0 ) : HbWidget(parent) {
-        Q_UNUSED(titleText);
+        mText = titleText;
     }
-    ~HbGroupBox();
+    ~HbGroupBox() {}
 
     void setHeading(const QString &text) {
-        Q_UNUSED(text);
+        mText = text;
     }
     
     QString heading() const {
-        return QString();
+        return mText;
     }
 	
+    QString mText;
 };
 
 #endif  //HbGroupBox_H