diff options
| author | Bananeweizen <Bananeweizen@gmx.de> | 2013-10-04 16:07:23 +0200 |
|---|---|---|
| committer | Bananeweizen <Bananeweizen@gmx.de> | 2013-10-04 16:07:23 +0200 |
| commit | 193d531a2b1c6f0aec440f8c1c1290f16490d431 (patch) | |
| tree | bf4db48f72039dea82e3d2041901710dd1de2462 /main/src/cgeo/geocaching/export/FieldnoteExport.java | |
| parent | f1f5743cc65222435042c85b13b3d2302a891504 (diff) | |
| download | cgeo-193d531a2b1c6f0aec440f8c1c1290f16490d431.zip cgeo-193d531a2b1c6f0aec440f8c1c1290f16490d431.tar.gz cgeo-193d531a2b1c6f0aec440f8c1c1290f16490d431.tar.bz2 | |
change: remove superfluous line break in export dialog
Diffstat (limited to 'main/src/cgeo/geocaching/export/FieldnoteExport.java')
| -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 05c62e3..1d3e85d 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.formatDateTime(Settings.getFieldnoteExportDate()) + ')'); + onlyNewOption.setText(getString(R.string.export_fieldnotes_onlynew) + " (" + Formatter.formatDateTime(Settings.getFieldnoteExportDate()) + ')'); } builder.setPositiveButton(R.string.export, new DialogInterface.OnClickListener() { |
