aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/ui
diff options
context:
space:
mode:
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);