aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgBase.java
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2012-01-14 15:02:15 +0100
committerBananeweizen <bananeweizen@gmx.de>2012-01-14 15:02:15 +0100
commite61a40fc8a4a3d5ab5a59346eddd1c43bcc4857e (patch)
treea2a8aec422fde537c500cf90ad70e606ba416121 /main/src/cgeo/geocaching/cgBase.java
parent77a8bc851569ae7a82f76a0913b39006074ac56a (diff)
downloadcgeo-e61a40fc8a4a3d5ab5a59346eddd1c43bcc4857e.zip
cgeo-e61a40fc8a4a3d5ab5a59346eddd1c43bcc4857e.tar.gz
cgeo-e61a40fc8a4a3d5ab5a59346eddd1c43bcc4857e.tar.bz2
refactoring: move more widget related classes into own package
Diffstat (limited to 'main/src/cgeo/geocaching/cgBase.java')
-rw-r--r--main/src/cgeo/geocaching/cgBase.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgBase.java b/main/src/cgeo/geocaching/cgBase.java
index 18c14ff..c4a2f24 100644
--- a/main/src/cgeo/geocaching/cgBase.java
+++ b/main/src/cgeo/geocaching/cgBase.java
@@ -20,6 +20,7 @@ import cgeo.geocaching.geopoint.IConversion;
import cgeo.geocaching.geopoint.Viewport;
import cgeo.geocaching.network.HtmlImage;
import cgeo.geocaching.twitter.Twitter;
+import cgeo.geocaching.ui.DirectionImage;
import cgeo.geocaching.utils.BaseUtils;
import cgeo.geocaching.utils.CancellableHandler;
@@ -657,7 +658,7 @@ public class cgBase {
{
for (cgCache oneCache : parseResult.cacheList) {
if (oneCache.getCoords() == null && StringUtils.isNotEmpty(oneCache.getDirectionImg())) {
- cgDirectionImg.getDrawable(oneCache.getGeocode(), oneCache.getDirectionImg());
+ DirectionImage.getDrawable(oneCache.getGeocode(), oneCache.getDirectionImg());
}
}
}