summaryrefslogtreecommitdiff
path: root/navit/gui/qml
diff options
context:
space:
mode:
Diffstat (limited to 'navit/gui/qml')
-rw-r--r--navit/gui/qml/bookmarksProxy.h2
-rw-r--r--navit/gui/qml/gui_qml.cpp4
-rw-r--r--navit/gui/qml/navitProxy.h2
-rw-r--r--navit/gui/qml/proxy.h2
-rw-r--r--navit/gui/qml/routeProxy.h4
-rw-r--r--navit/gui/qml/searchProxy.h4
6 files changed, 9 insertions, 9 deletions
diff --git a/navit/gui/qml/bookmarksProxy.h b/navit/gui/qml/bookmarksProxy.h
index 96ed32e8a..03cbcbc88 100644
--- a/navit/gui/qml/bookmarksProxy.h
+++ b/navit/gui/qml/bookmarksProxy.h
@@ -144,7 +144,7 @@ public slots:
if (!item_attr_get(item, attr_label, &attr)) continue;
label=QString::fromLocal8Bit(attr.u.str);
- dbg(lvl_error,"Bookmark is %s\n",bookmark.toStdString().c_str());
+ dbg(lvl_debug,"Bookmark is %s\n",bookmark.toStdString().c_str());
if (label.compare(bookmark)) continue;
item_coord_get(item, &c, 1);
if (this->object->currentPoint!=NULL) {
diff --git a/navit/gui/qml/gui_qml.cpp b/navit/gui/qml/gui_qml.cpp
index 98132c756..cee0574bd 100644
--- a/navit/gui/qml/gui_qml.cpp
+++ b/navit/gui/qml/gui_qml.cpp
@@ -161,11 +161,11 @@ static void gui_qml_button(void *data, int pressed, int button, struct point *p)
// check whether the position of the mouse changed during press/release OR if it is the scrollwheel
if (!navit_handle_button(this_->nav, pressed, button, p, NULL)) {
- dbg(lvl_warning,"navit has handled button\n");
+ dbg(lvl_debug,"navit has handled button\n");
return;
}
- dbg(lvl_warning,"enter %d %d\n", pressed, button);
+ dbg(lvl_debug,"enter %d %d\n", pressed, button);
if (this_->signal_on_map_click) {
gui_qml_dbus_signal(this_, p);
return;
diff --git a/navit/gui/qml/navitProxy.h b/navit/gui/qml/navitProxy.h
index 48197eeb5..423863b0e 100644
--- a/navit/gui/qml/navitProxy.h
+++ b/navit/gui/qml/navitProxy.h
@@ -82,7 +82,7 @@ public slots:
dropIterFunc(iter);
- dbg(lvl_error,QString::number(_itemId).toStdString().c_str());
+ dbg(lvl_debug,QString::number(_itemId).toStdString().c_str());
return retDoc.toString();
}
diff --git a/navit/gui/qml/proxy.h b/navit/gui/qml/proxy.h
index d2e00b95c..3243dc8cb 100644
--- a/navit/gui/qml/proxy.h
+++ b/navit/gui/qml/proxy.h
@@ -55,7 +55,7 @@ public slots:
struct attr attr_value;
double *helper;
- dbg(lvl_warning,"Setting %s to %s\n",attr_name.toStdString().c_str(),attr_string.toStdString().c_str());
+ dbg(lvl_debug,"Setting %s to %s\n",attr_name.toStdString().c_str(),attr_string.toStdString().c_str());
getAttrFunc(attr_from_name(attr_name.toStdString().c_str()), &attr_value, NULL);
if (ATTR_IS_INT(attr_value.type)) {
diff --git a/navit/gui/qml/routeProxy.h b/navit/gui/qml/routeProxy.h
index 2492fda23..a2fb4c793 100644
--- a/navit/gui/qml/routeProxy.h
+++ b/navit/gui/qml/routeProxy.h
@@ -30,10 +30,10 @@ public slots:
QList<struct attr> destinations=this->_routeDestinations();
for (QList<struct attr>::const_iterator iter=destinations.begin();iter!=destinations.end();iter++) {
NGQPoint helperPoint(this->object,iter->u.pcoord,MapPoint);
- dbg(lvl_error,"Added destination %s\n",helperPoint.coordString().toLocal8Bit().constData());
+ dbg(lvl_debug,"Added destination %s\n",helperPoint.coordString().toLocal8Bit().constData());
}
- //dbg(lvl_error,QString::number(_itemId).toStdString().c_str());
+ //dbg(lvl_debug,QString::number(_itemId).toStdString().c_str());
//return retDoc.toString();
return QString();
diff --git a/navit/gui/qml/searchProxy.h b/navit/gui/qml/searchProxy.h
index 49fadd5e3..579ac3dac 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_error,"country %s\n", country_name.u.str);
+ dbg(lvl_debug,"country %s\n", 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);
@@ -46,7 +46,7 @@ public:
} else {
dbg(lvl_error,"warning: no default country found\n");
if (!this->country_iso2.isEmpty()) {
- dbg(lvl_error,"attempting to use country '%s'\n",this->country_iso2.toStdString().c_str());
+ dbg(lvl_debug,"attempting to use country '%s'\n",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);