summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--divesitehelpers.cpp1
-rw-r--r--qt-ui/maintab.cpp2
2 files changed, 0 insertions, 3 deletions
diff --git a/divesitehelpers.cpp b/divesitehelpers.cpp
index 4cc40f203..d635969da 100644
--- a/divesitehelpers.cpp
+++ b/divesitehelpers.cpp
@@ -138,7 +138,6 @@ void ReverseGeoLookupThread::run() {
if (ds->taxonomy.category == NULL)
ds->taxonomy.category = alloc_taxonomy();
ds->taxonomy.category[ds->taxonomy.nr].category = OCEAN;
- qDebug() << "set category of slot" << ds->taxonomy.nr << "to OCEAN(1)";
ds->taxonomy.category[ds->taxonomy.nr].origin = taxonomy::GEOCODED;
ds->taxonomy.category[ds->taxonomy.nr].value = copy_string(qPrintable(oceanName["name"].toString()));
ds->taxonomy.nr++;
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp
index 26f221883..dd6ce72b0 100644
--- a/qt-ui/maintab.cpp
+++ b/qt-ui/maintab.cpp
@@ -505,9 +505,7 @@ void MainTab::updateDiveInfo(bool clear)
locationTag = "<small><small>(tags: ";
QString connector = "";
for (int i = 0; i < 3; i++) {
- qDebug() << "looking for category" << prefs.geocoding.category[i];
for (int j = 0; j < NR_CATEGORIES; j++) {
- qDebug() << "seeing category" << ds->taxonomy.category[j].category;
if (ds->taxonomy.category[j].category == prefs.geocoding.category[i]) {
locationTag += connector + QString(ds->taxonomy.category[j].value);
connector = " / ";