Merge change 20379 into donut

* changes:
  Fix some minor typo
This commit is contained in:
Android (Google) Code Review
2009-08-06 18:25:11 -07:00
2 changed files with 4 additions and 4 deletions

View File

@@ -308,7 +308,7 @@ class UpdaterData {
// Display anything unexpected in the monitor.
String msg = t.getMessage();
if (msg != null) {
monitor.setResult("Unexpected Error installing '%1$s: %2$s",
monitor.setResult("Unexpected Error installing '%1$s': %2$s",
archive.getParentPackage().getShortDescription(), msg);
} else {
// no error info? get the stack call to display it
@@ -317,7 +317,7 @@ class UpdaterData {
t.printStackTrace(new PrintStream(baos));
// and display it
monitor.setResult("Unexpected Error installing '%1$s\n%2$s",
monitor.setResult("Unexpected Error installing '%1$s'\n%2$s",
archive.getParentPackage().getShortDescription(),
baos.toString());
}

View File

@@ -298,8 +298,8 @@ public final class AvdSelector {
mRefreshButton = new Button(buttons, SWT.PUSH | SWT.FLAT);
mRefreshButton.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
mRefreshButton.setText("Resfresh");
mRefreshButton.setToolTipText("Reloads the list of AVD.\nUse this if you create AVD from the command line.");
mRefreshButton.setText("Refresh");
mRefreshButton.setToolTipText("Reloads the list of AVD.\nUse this if you create AVDs from the command line.");
mRefreshButton.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent arg0) {