videocollection/tsrc/stubs/inc/hbgroupbox.h
changeset 36 8aed59de29f9
parent 34 bbb98528c666
--- a/videocollection/tsrc/stubs/inc/hbgroupbox.h	Thu Apr 01 23:32:44 2010 +0300
+++ b/videocollection/tsrc/stubs/inc/hbgroupbox.h	Fri Apr 16 18:13:14 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