diff options
| author | Bananeweizen <Bananeweizen@gmx.de> | 2013-07-31 13:47:10 +0200 |
|---|---|---|
| committer | Bananeweizen <Bananeweizen@gmx.de> | 2013-07-31 13:47:10 +0200 |
| commit | 4cef30e041e27634f56be70d5694d83663bc1d68 (patch) | |
| tree | f239c2c762ccd58cead5207e99b609565640a51d /main/src/cgeo/geocaching/export | |
| parent | 13551c5996c5be31bc50cdb691c17d1ac3fa0392 (diff) | |
| download | cgeo-4cef30e041e27634f56be70d5694d83663bc1d68.zip cgeo-4cef30e041e27634f56be70d5694d83663bc1d68.tar.gz cgeo-4cef30e041e27634f56be70d5694d83663bc1d68.tar.bz2 | |
refactoring: make formatter work without context
Diffstat (limited to 'main/src/cgeo/geocaching/export')
| -rw-r--r-- | main/src/cgeo/geocaching/export/FieldnoteExport.java | 2 |
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 38cd43e..d5e6ff6 100644 --- a/main/src/cgeo/geocaching/export/FieldnoteExport.java +++ b/main/src/cgeo/geocaching/export/FieldnoteExport.java @@ -82,7 +82,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(activity, Settings.getFieldnoteExportDate()) + ')'); + onlyNewOption.setText(getString(R.string.export_fieldnotes_onlynew) + "\n(" + Formatter.formatShortDateTime(Settings.getFieldnoteExportDate()) + ')'); } builder.setPositiveButton(R.string.export, new DialogInterface.OnClickListener() { |
