1 files changed, 0 insertions, 9 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml
index 1fd0c610..fb0c6036 100644
--- a/resources/qml/Root.qml
+++ b/resources/qml/Root.qml
@@ -348,11 +348,6 @@ Pane {
}
}
Platform.MessageDialog {
- id: uiaErrorDialog
-
- buttons: Platform.MessageDialog.Ok
- }
- Platform.MessageDialog {
id: uiaConfirmationLinkDialog
buttons: Platform.MessageDialog.Ok
@@ -368,10 +363,6 @@ Pane {
function onEmail() {
uiaEmailPrompt.show();
}
- function onError(msg) {
- uiaErrorDialog.text = msg;
- uiaErrorDialog.open();
- }
function onPassword() {
console.log("UIA: password needed");
uiaPassPrompt.show();
|