Fix compilation
This commit is contained in:
parent
2edb94cc90
commit
aa51ee6804
2 changed files with 2 additions and 2 deletions
|
@ -282,7 +282,7 @@ public class GpxSelectionHelper {
|
|||
if(obj.has(FILE)) {
|
||||
File fl = new File(obj.getString(FILE));
|
||||
if(p != null) {
|
||||
p.startTask(getString(R.string.loading, fl.getName()), -1);
|
||||
p.startTask(getString(R.string.loading_smth, fl.getName()), -1);
|
||||
}
|
||||
GPXFile gpx = GPXUtilities.loadGPXFile(app, fl);
|
||||
selectGpxFile(gpx, true);
|
||||
|
|
|
@ -165,7 +165,7 @@ public class GpxImportHelper {
|
|||
|
||||
@Override
|
||||
protected void onPreExecute() {
|
||||
progress = ProgressDialog.show(mapActivity, application.getString(R.string.loading), application.getString(R.string.loading_data));
|
||||
progress = ProgressDialog.show(mapActivity, application.getString(R.string.loading_smth, ""), application.getString(R.string.loading_data));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue