fix string assignment
This commit is contained in:
parent
3b511e72f6
commit
a259ff6c6e
1 changed files with 2 additions and 2 deletions
|
@ -187,8 +187,8 @@ public class DashWaypointsFragment extends DashLocationFragment {
|
|||
final boolean target = point == getMyApplication().getTargetPointsHelper().getPointToNavigate();
|
||||
Builder builder = new AlertDialog.Builder(view.getContext());
|
||||
// Stop the navigation
|
||||
builder.setTitle(getString(R.string.clear_destination));
|
||||
builder.setMessage(getString(R.string.delete_target_point));
|
||||
builder.setTitle(getString(R.string.delete_target_point));
|
||||
builder.setMessage(getString(R.string.clear_destination));
|
||||
builder.setPositiveButton(R.string.shared_string_yes, new DialogInterface.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
|
|
Loading…
Reference in a new issue