equal
deleted
inserted
replaced
29 public: |
29 public: |
30 HbInputDialog(QGraphicsItem *parent= 0) : HbWidget(parent) {} |
30 HbInputDialog(QGraphicsItem *parent= 0) : HbWidget(parent) {} |
31 ~HbInputDialog() {} |
31 ~HbInputDialog() {} |
32 |
32 |
33 static QString getText(const QString &label,const QString &text = QString(), |
33 static QString getText(const QString &label,const QString &text = QString(), |
34 bool *ok = 0, QGraphicsScene *scene = 0, QGraphicsItem *parent = 0) |
34 bool *ok = 0, QGraphicsScene *scene = 0, QGraphicsItem *parent = 0); |
35 { |
35 |
36 Q_UNUSED(label); |
36 static bool mGetTextFails; |
37 Q_UNUSED(ok); |
|
38 Q_UNUSED(scene); |
|
39 Q_UNUSED(parent); |
|
40 return text; |
|
41 } |
|
42 }; |
37 }; |
43 |
38 |
44 #endif //HBINPUT_DIALOG_H |
39 #endif //HBINPUT_DIALOG_H |
45 |
40 |