Skip to content

Commit

Permalink
Issue 6769: The bottom bar of pop-up boxes in CM File Manager should …
Browse files Browse the repository at this point in the history
…be “Done” or “OK” rather than “Cancel”

Issue: http://code.google.com/p/cyanogenmod/issues/detail?id=6769

Changed "Cancel" to "Ok" in FsoPropertiesDialog and FilesystemInfoDialog.

Change-Id: Id92ea897afae69e059da661a13350bc7020509c4
  • Loading branch information
jruesga committed Dec 3, 2012
1 parent 74db77f commit 5730cd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public FilesystemInfoDialog(Context context, MountPoint mountPoint, DiskUsage di
this.mContentView);
this.mDialog.setButton(
DialogInterface.BUTTON_NEGATIVE,
this.mContext.getString(android.R.string.cancel),
this.mContext.getString(android.R.string.ok),
(DialogInterface.OnClickListener)null);

//Fill the dialog
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public FsoPropertiesDialog(Context context, FileSystemObject fso) {
this.mContentView);
this.mDialog.setButton(
DialogInterface.BUTTON_NEGATIVE,
this.mContext.getString(android.R.string.cancel),
this.mContext.getString(android.R.string.ok),
(DialogInterface.OnClickListener)null);
this.mDialog.setOnCancelListener(this);
this.mDialog.setOnDismissListener(this);
Expand Down

0 comments on commit 5730cd8

Please sign in to comment.