summaryrefslogtreecommitdiff
path: root/src/imports/location/declarativeplaces/qdeclarativecontactdetail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/location/declarativeplaces/qdeclarativecontactdetail.cpp')
-rw-r--r--src/imports/location/declarativeplaces/qdeclarativecontactdetail.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/location/declarativeplaces/qdeclarativecontactdetail.cpp b/src/imports/location/declarativeplaces/qdeclarativecontactdetail.cpp
index 196e6d83..b68b22f7 100644
--- a/src/imports/location/declarativeplaces/qdeclarativecontactdetail.cpp
+++ b/src/imports/location/declarativeplaces/qdeclarativecontactdetail.cpp
@@ -177,7 +177,7 @@ QString QDeclarativeContactDetail::label() const
void QDeclarativeContactDetail::setLabel(const QString &label)
{
- if (m_contactDetail.label()!= label) {
+ if (m_contactDetail.label() != label) {
m_contactDetail.setLabel(label);
emit labelChanged();
}
@@ -196,7 +196,7 @@ QString QDeclarativeContactDetail::value() const
void QDeclarativeContactDetail::setValue(const QString &value)
{
- if (m_contactDetail.value()!= value) {
+ if (m_contactDetail.value() != value) {
m_contactDetail.setValue(value);
emit valueChanged();
}