aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/ui
diff options
context:
space:
mode:
authorcampbeb <bpcampbell@gmail.com>2013-06-05 17:04:56 -1000
committercampbeb <bpcampbell@gmail.com>2013-06-05 17:24:11 -1000
commitb610ce7289c4cfe9d8a040d9cc4aadee2838700d (patch)
tree8a9a8e09c430ae96fe70b4ca3b0c5f437faa9171 /main/src/cgeo/geocaching/ui
parente657d819d23f2e2749be4499ba2d5e9862c4a6b0 (diff)
downloadcgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.zip
cgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.tar.gz
cgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.tar.bz2
Correct log messages to account for refactoring
Diffstat (limited to 'main/src/cgeo/geocaching/ui')
-rw-r--r--main/src/cgeo/geocaching/ui/FileSelectionListAdapter.java2
-rw-r--r--main/src/cgeo/geocaching/ui/GPXListAdapter.java4
-rw-r--r--main/src/cgeo/geocaching/ui/ImagesList.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/main/src/cgeo/geocaching/ui/FileSelectionListAdapter.java b/main/src/cgeo/geocaching/ui/FileSelectionListAdapter.java
index 1db3f21..ea32178 100644
--- a/main/src/cgeo/geocaching/ui/FileSelectionListAdapter.java
+++ b/main/src/cgeo/geocaching/ui/FileSelectionListAdapter.java
@@ -33,7 +33,7 @@ public class FileSelectionListAdapter extends ArrayAdapter<File> {
}
if (position > getCount()) {
- Log.w("cgGPXListAdapter.getView: Attempt to access missing item #" + position);
+ Log.w("FileSelectionListAdapter.getView: Attempt to access missing item #" + position);
return null;
}
diff --git a/main/src/cgeo/geocaching/ui/GPXListAdapter.java b/main/src/cgeo/geocaching/ui/GPXListAdapter.java
index 9f6c14c..d2bfe16 100644
--- a/main/src/cgeo/geocaching/ui/GPXListAdapter.java
+++ b/main/src/cgeo/geocaching/ui/GPXListAdapter.java
@@ -1,7 +1,7 @@
package cgeo.geocaching.ui;
-import cgeo.geocaching.R;
import cgeo.geocaching.GpxFileListActivity;
+import cgeo.geocaching.R;
import cgeo.geocaching.files.GPXImporter;
import cgeo.geocaching.utils.Log;
@@ -39,7 +39,7 @@ public class GPXListAdapter extends ArrayAdapter<File> {
}
if (position > getCount()) {
- Log.w("cgGPXListAdapter.getView: Attempt to access missing item #" + position);
+ Log.w("GPXListAdapter.getView: Attempt to access missing item #" + position);
return null;
}
diff --git a/main/src/cgeo/geocaching/ui/ImagesList.java b/main/src/cgeo/geocaching/ui/ImagesList.java
index a0ffe84..0f860c4 100644
--- a/main/src/cgeo/geocaching/ui/ImagesList.java
+++ b/main/src/cgeo/geocaching/ui/ImagesList.java
@@ -186,7 +186,7 @@ public class ImagesList {
stream = new BufferedOutputStream(new FileOutputStream(file));
image.getBitmap().compress(CompressFormat.JPEG, 100, stream);
} catch (Exception e) {
- Log.e("ImagesActivity.handleMessage.onClick", e);
+ Log.e("ImagesList.viewImageInStandardApp", e);
return;
} finally {
IOUtils.closeQuietly(stream);