Merge change 20379 into donut
* changes: Fix some minor typo
This commit is contained in:
@@ -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());
|
||||
}
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user