aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/cgData.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgeo/geocaching/cgData.java')
-rw-r--r--src/cgeo/geocaching/cgData.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgeo/geocaching/cgData.java b/src/cgeo/geocaching/cgData.java
index e10f30e..d83edb9 100644
--- a/src/cgeo/geocaching/cgData.java
+++ b/src/cgeo/geocaching/cgData.java
@@ -1182,7 +1182,7 @@ public class cgData {
values.put("detailedupdate", cache.detailedUpdate);
values.put("visiteddate", cache.visitedDate);
values.put("geocode", cache.geocode);
- values.put("cacheid", cache.cacheid);
+ values.put("cacheid", cache.cacheId);
values.put("guid", cache.guid);
values.put("type", cache.type);
values.put("name", cache.name);
@@ -1978,7 +1978,7 @@ public class cgData {
cache.detailedUpdate = (Long) cursor.getLong(cursor.getColumnIndex("detailedupdate"));
cache.visitedDate = (Long) cursor.getLong(cursor.getColumnIndex("visiteddate"));
cache.geocode = (String) cursor.getString(cursor.getColumnIndex("geocode"));
- cache.cacheid = (String) cursor.getString(cursor.getColumnIndex("cacheid"));
+ cache.cacheId = (String) cursor.getString(cursor.getColumnIndex("cacheid"));
cache.guid = (String) cursor.getString(cursor.getColumnIndex("guid"));
cache.type = (String) cursor.getString(cursor.getColumnIndex("type"));
cache.name = (String) cursor.getString(cursor.getColumnIndex("name"));