summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2011-04-24 20:51:51 (GMT)
committerKevin Smith <git@kismith.co.uk>2011-04-24 20:51:51 (GMT)
commita32db865c13126df9dc676425f0f7b7a3fe5dea9 (patch)
tree814de84531cf48316b3609318e4722f1fdcb9537 /Swift
parent522a3a1c66233792741eb47f75e009a2fe9fa3ad (diff)
downloadswift-a32db865c13126df9dc676425f0f7b7a3fe5dea9.zip
swift-a32db865c13126df9dc676425f0f7b7a3fe5dea9.tar.bz2
Set untyped fields to Text-Single.
XEP-0004 gives a default field type of Text-Single where none is specified.
Diffstat (limited to 'Swift')
-rw-r--r--Swift/QtUI/QtFormWidget.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/Swift/QtUI/QtFormWidget.cpp b/Swift/QtUI/QtFormWidget.cpp
index 659fb25..050ff27 100644
--- a/Swift/QtUI/QtFormWidget.cpp
+++ b/Swift/QtUI/QtFormWidget.cpp
@@ -129,9 +129,6 @@ QWidget* QtFormWidget::createWidget(FormField::ref field) {
if (listMultiField) {
widget = createList(field);
}
- boost::shared_ptr<UntypedFormField> untypedField = boost::dynamic_pointer_cast<UntypedFormField>(field);
- if (untypedField) {
- }
boost::shared_ptr<HiddenFormField> hiddenField = boost::dynamic_pointer_cast<HiddenFormField>(field);
if (hiddenField) {
}
@@ -232,9 +229,6 @@ Form::ref QtFormWidget::getCompletedForm() {
}
resultField = FormField::ref(ListMultiFormField::create(values));
}
- boost::shared_ptr<UntypedFormField> untypedField = boost::dynamic_pointer_cast<UntypedFormField>(field);
- if (untypedField) {
- }
boost::shared_ptr<HiddenFormField> hiddenField = boost::dynamic_pointer_cast<HiddenFormField>(field);
if (hiddenField) {
resultField = FormField::ref(HiddenFormField::create(hiddenField->getValue()));