aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/theb/ssh/SecureShell.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/theb/ssh/SecureShell.java')
-rw-r--r--src/org/theb/ssh/SecureShell.java10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/org/theb/ssh/SecureShell.java b/src/org/theb/ssh/SecureShell.java
index 8d4dda6..9269bac 100644
--- a/src/org/theb/ssh/SecureShell.java
+++ b/src/org/theb/ssh/SecureShell.java
@@ -216,9 +216,13 @@ public class SecureShell extends Activity implements FeedbackUI, ConnectionMonit
if (SecureShell.this.isFinishing())
return;
- AlertDialog d = AlertDialog.show(SecureShell.this,
- "Connection Lost", mDisconnectReason, "Ok", false);
- d.show();
+// AlertDialog d = AlertDialog.show(SecureShell.this,
+// "Connection Lost", mDisconnectReason, "Ok", false);
+ new AlertDialog.Builder(SecureShell.this)
+ .setIcon(R.drawable.icon)
+ .setTitle(R.string.alert_disconnect_msg)
+ .setPositiveButton(R.string.button_ok, null)
+ .show();
// TODO: Return to previous activity if connection fails.
}
};