summaryrefslogtreecommitdiff
path: root/navit/gui/qml/searchProxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'navit/gui/qml/searchProxy.h')
-rw-r--r--navit/gui/qml/searchProxy.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/navit/gui/qml/searchProxy.h b/navit/gui/qml/searchProxy.h
index 579ac3dac..3d76dc0dd 100644
--- a/navit/gui/qml/searchProxy.h
+++ b/navit/gui/qml/searchProxy.h
@@ -33,7 +33,7 @@ public:
item=country_search_get_item(cs);
if (item && item_attr_get(item, attr_country_name, &country_name)) {
search_attr.type=attr_country_all;
- dbg(lvl_debug,"country %s\n", country_name.u.str);
+ dbg(lvl_debug,"country %s", country_name.u.str);
this->country_name=QString::fromLocal8Bit(country_name.u.str);
search_attr.u.str=country_name.u.str;
search_list_search(this->sl, &search_attr, 0);
@@ -44,15 +44,15 @@ public:
}
country_search_destroy(cs);
} else {
- dbg(lvl_error,"warning: no default country found\n");
+ dbg(lvl_error,"warning: no default country found");
if (!this->country_iso2.isEmpty()) {
- dbg(lvl_debug,"attempting to use country '%s'\n",this->country_iso2.toStdString().c_str());
+ dbg(lvl_debug,"attempting to use country '%s'",this->country_iso2.toStdString().c_str());
search_attr.type=attr_country_iso2;
search_attr.u.str=(char*)this->country_iso2.toStdString().c_str();
search_list_search(this->sl, &search_attr, 0);
while((res=search_list_get_result(this->sl)));
}
- }
+ }
}
~NGQProxySearch() {
search_list_destroy(this->sl);
@@ -131,7 +131,7 @@ public slots:
}
if (res->town->common.district_name) {
entry.appendChild(this->_fieldValueHelper(retDoc,QString("name"), QString::fromLocal8Bit(res->town->common.district_name)));
- }
+ }
}
if (this->search_context=="street") {
entry.appendChild(this->_fieldValueHelper(retDoc,QString("id"), QString::number(counter)));
@@ -150,8 +150,8 @@ public slots:
this->country_name=countryName;
struct attr attr;
struct search_list_result *res;
-
- //We need to update ISO2
+
+ //We need to update ISO2
attr.type=attr_country_name;
attr.u.str=countryName.toLocal8Bit().data();
search_list_search(this->sl,&attr,0);
@@ -183,7 +183,7 @@ public slots:
attr.type=attr_town_or_district_name;
attr.u.str=townName.toLocal8Bit().data();
search_list_search(this->sl,&attr,0);
-
+
//...and street
this->street_name="";