summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/nokia
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2011-09-06 14:16:01 +1000
committerAaron McCarthy <aaron.mccarthy@nokia.com>2011-09-07 02:30:44 +0200
commit3b55bbd1fbac94def3718133db574823948c3b01 (patch)
tree4014df9794ce0e0a9e3c92f66d04fc0a4ffdc128 /src/plugins/geoservices/nokia
parent05545f1938c851cec656f49e43cd27aef5a648c2 (diff)
downloadqtlocation-3b55bbd1fbac94def3718133db574823948c3b01.tar.gz
Display all additional place properties.
Change-Id: Ie9b24929eed2c9c678ec4e53561403ced27e845f Reviewed-on: http://codereview.qt.nokia.com/4232 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: abcd <qt_abcd1@ovi.com> Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
Diffstat (limited to 'src/plugins/geoservices/nokia')
-rw-r--r--src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp b/src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp
index 916932e4..eb8259a0 100644
--- a/src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp
+++ b/src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp
@@ -864,6 +864,7 @@ void QPlaceJSonDetailsParser::processAdContentPaymentMethods(const QScriptValue
}
if (list.count()) {
QPlaceAttribute paymentMethods;
+ paymentMethods.setLabel(tr("Payment methods"));
paymentMethods.setText(list.join(","));
targetPlace->insertExtendedAttribute(QPlaceAttribute::PaymentMethods, paymentMethods);
}
@@ -1015,6 +1016,7 @@ void QPlaceJSonDetailsParser::processAdContentOpeningNotes(const QScriptValue &c
QString obj = processAdContentOpeningNote(it.value());
if (!obj.isEmpty()) {
QPlaceAttribute openingNote;
+ openingNote.setLabel(tr("Opening note"));
openingNote.setText(obj);
targetPlace->insertExtendedAttribute(QPlaceAttribute::OpeningNote, openingNote);
//! @todo only one is used
@@ -1026,6 +1028,7 @@ void QPlaceJSonDetailsParser::processAdContentOpeningNotes(const QScriptValue &c
QString obj = processAdContentOpeningNote(value);
if (!obj.isEmpty()) {
QPlaceAttribute openingNote;
+ openingNote.setLabel(tr("Opening note"));
openingNote.setText(obj);
targetPlace->insertExtendedAttribute(QPlaceAttribute::OpeningNote, openingNote);
}