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.
|
// Display anything unexpected in the monitor.
|
||||||
String msg = t.getMessage();
|
String msg = t.getMessage();
|
||||||
if (msg != null) {
|
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);
|
archive.getParentPackage().getShortDescription(), msg);
|
||||||
} else {
|
} else {
|
||||||
// no error info? get the stack call to display it
|
// no error info? get the stack call to display it
|
||||||
@@ -317,7 +317,7 @@ class UpdaterData {
|
|||||||
t.printStackTrace(new PrintStream(baos));
|
t.printStackTrace(new PrintStream(baos));
|
||||||
|
|
||||||
// and display it
|
// 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(),
|
archive.getParentPackage().getShortDescription(),
|
||||||
baos.toString());
|
baos.toString());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -298,8 +298,8 @@ public final class AvdSelector {
|
|||||||
|
|
||||||
mRefreshButton = new Button(buttons, SWT.PUSH | SWT.FLAT);
|
mRefreshButton = new Button(buttons, SWT.PUSH | SWT.FLAT);
|
||||||
mRefreshButton.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
|
mRefreshButton.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
|
||||||
mRefreshButton.setText("Resfresh");
|
mRefreshButton.setText("Refresh");
|
||||||
mRefreshButton.setToolTipText("Reloads the list of AVD.\nUse this if you create AVD from the command line.");
|
mRefreshButton.setToolTipText("Reloads the list of AVD.\nUse this if you create AVDs from the command line.");
|
||||||
mRefreshButton.addSelectionListener(new SelectionAdapter() {
|
mRefreshButton.addSelectionListener(new SelectionAdapter() {
|
||||||
@Override
|
@Override
|
||||||
public void widgetSelected(SelectionEvent arg0) {
|
public void widgetSelected(SelectionEvent arg0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user