diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2011-12-18 22:19:38 +0100 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2011-12-18 22:19:38 +0100 |
commit | eac366bad9af1e2ec3b014f953837e2d067c237e (patch) | |
tree | a368adef8f7060284a996e422c1b1ff44aae4d0b /main/src/cgeo/geocaching/cgeoapplication.java | |
parent | 439bcd63ead65c48ead621a209b37017a3cf2858 (diff) | |
download | cgeo-eac366bad9af1e2ec3b014f953837e2d067c237e.zip cgeo-eac366bad9af1e2ec3b014f953837e2d067c237e.tar.gz cgeo-eac366bad9af1e2ec3b014f953837e2d067c237e.tar.bz2 |
fix #358: have number of caches in list selection
Diffstat (limited to 'main/src/cgeo/geocaching/cgeoapplication.java')
-rw-r--r-- | main/src/cgeo/geocaching/cgeoapplication.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/cgeoapplication.java b/main/src/cgeo/geocaching/cgeoapplication.java index 5a5042e..ef4d6c8 100644 --- a/main/src/cgeo/geocaching/cgeoapplication.java +++ b/main/src/cgeo/geocaching/cgeoapplication.java @@ -667,11 +667,11 @@ public class cgeoapplication extends Application { storage.clearVisitDate(geocode); } - public List<cgList> getLists() { + public List<StoredList> getLists() { return storage.getLists(getResources()); } - public cgList getList(int id) { + public StoredList getList(int id) { return storage.getList(id, getResources()); } |