aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/export
diff options
context:
space:
mode:
authorBananeweizen <Bananeweizen@gmx.de>2013-10-04 16:05:09 +0200
committerBananeweizen <Bananeweizen@gmx.de>2013-10-04 16:05:09 +0200
commitf1f5743cc65222435042c85b13b3d2302a891504 (patch)
tree2836f4c8c063c7a7d03c68a50ba0b2dc53e8f8c9 /main/src/cgeo/geocaching/export
parent40ce9ae42db5f83abf6fcf9b3a6a6df6c21ac246 (diff)
downloadcgeo-f1f5743cc65222435042c85b13b3d2302a891504.zip
cgeo-f1f5743cc65222435042c85b13b3d2302a891504.tar.gz
cgeo-f1f5743cc65222435042c85b13b3d2302a891504.tar.bz2
change: use long date format in field note export dialog
Diffstat (limited to 'main/src/cgeo/geocaching/export')
-rw-r--r--main/src/cgeo/geocaching/export/FieldnoteExport.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/export/FieldnoteExport.java b/main/src/cgeo/geocaching/export/FieldnoteExport.java
index d59434a..05c62e3 100644
--- a/main/src/cgeo/geocaching/export/FieldnoteExport.java
+++ b/main/src/cgeo/geocaching/export/FieldnoteExport.java
@@ -83,7 +83,7 @@ class FieldnoteExport extends AbstractExport {
final CheckBox onlyNewOption = (CheckBox) layout.findViewById(R.id.onlynew);
if (Settings.getFieldnoteExportDate() > 0) {
- onlyNewOption.setText(getString(R.string.export_fieldnotes_onlynew) + "\n(" + Formatter.formatShortDateTime(Settings.getFieldnoteExportDate()) + ')');
+ onlyNewOption.setText(getString(R.string.export_fieldnotes_onlynew) + "\n(" + Formatter.formatDateTime(Settings.getFieldnoteExportDate()) + ')');
}
builder.setPositiveButton(R.string.export, new DialogInterface.OnClickListener() {