aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/export
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/export')
-rw-r--r--main/src/cgeo/geocaching/export/FieldnoteExport.java4
-rw-r--r--main/src/cgeo/geocaching/export/GpxExport.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/main/src/cgeo/geocaching/export/FieldnoteExport.java b/main/src/cgeo/geocaching/export/FieldnoteExport.java
index f9f13e3..32c9943 100644
--- a/main/src/cgeo/geocaching/export/FieldnoteExport.java
+++ b/main/src/cgeo/geocaching/export/FieldnoteExport.java
@@ -2,7 +2,7 @@ package cgeo.geocaching.export;
import cgeo.geocaching.R;
import cgeo.geocaching.cgCache;
-import cgeo.geocaching.cgLog;
+import cgeo.geocaching.LogEntry;
import cgeo.geocaching.cgeoapplication;
import cgeo.geocaching.activity.ActivityMixin;
import cgeo.geocaching.activity.Progress;
@@ -144,7 +144,7 @@ class FieldnoteExport extends AbstractExport {
try {
final cgCache cache = caches.get(i);
if (cache.isLogOffline()) {
- cgLog log = cgeoapplication.getInstance().loadLogOffline(cache.getGeocode());
+ LogEntry log = cgeoapplication.getInstance().loadLogOffline(cache.getGeocode());
if (null != logTypes.get(log.type)) {
fieldNoteBuffer.append(cache.getGeocode())
.append(',')
diff --git a/main/src/cgeo/geocaching/export/GpxExport.java b/main/src/cgeo/geocaching/export/GpxExport.java
index bebbed8..2c833a2 100644
--- a/main/src/cgeo/geocaching/export/GpxExport.java
+++ b/main/src/cgeo/geocaching/export/GpxExport.java
@@ -2,7 +2,7 @@ package cgeo.geocaching.export;
import cgeo.geocaching.R;
import cgeo.geocaching.cgCache;
-import cgeo.geocaching.cgLog;
+import cgeo.geocaching.LogEntry;
import cgeo.geocaching.cgeoapplication;
import cgeo.geocaching.activity.ActivityMixin;
import cgeo.geocaching.activity.Progress;
@@ -209,7 +209,7 @@ class GpxExport extends AbstractExport {
if (cache.getLogs().size() > 0) {
gpx.append("<groundspeak:logs>");
- for (cgLog log : cache.getLogs()) {
+ for (LogEntry log : cache.getLogs()) {
gpx.append("<groundspeak:log id=\"");
gpx.append(log.id);
gpx.append("\">");