diff options
| author | Stephan Merker <merker.stephan@googlemail.com> | 2011-11-09 23:13:31 +0100 |
|---|---|---|
| committer | Stephan Merker <merker.stephan@googlemail.com> | 2011-11-09 23:13:31 +0100 |
| commit | 759f158b115fe27f7c61409d5f540d1effb6c0e1 (patch) | |
| tree | b3acf25fd5445ccb7d9b9e0e81818ecee010c3d7 /main/src/cgeo/geocaching/GPXImportActivity.java | |
| parent | dc1dcb57cf7b4b3b183e240e1a529816d3107ff4 (diff) | |
| download | cgeo-759f158b115fe27f7c61409d5f540d1effb6c0e1.zip cgeo-759f158b115fe27f7c61409d5f540d1effb6c0e1.tar.gz cgeo-759f158b115fe27f7c61409d5f540d1effb6c0e1.tar.bz2 | |
new: cancel GPX import with back button
Diffstat (limited to 'main/src/cgeo/geocaching/GPXImportActivity.java')
| -rw-r--r-- | main/src/cgeo/geocaching/GPXImportActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/GPXImportActivity.java b/main/src/cgeo/geocaching/GPXImportActivity.java index 77cb8de..30ccab2 100644 --- a/main/src/cgeo/geocaching/GPXImportActivity.java +++ b/main/src/cgeo/geocaching/GPXImportActivity.java @@ -23,7 +23,7 @@ public class GPXImportActivity extends AbstractActivity { .setCancelable(false) .setPositiveButton(getString(android.R.string.yes), new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { - (new GPXImporter(cgList.STANDARD_LIST_ID)).importGPX(GPXImportActivity.this, getIntent().getData(), getContentResolver()); + (new GPXImporter(GPXImportActivity.this, cgList.STANDARD_LIST_ID)).importGPX(getIntent().getData(), getContentResolver()); } }) .setNegativeButton(getString(android.R.string.no), new DialogInterface.OnClickListener() { |
