Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/DatabaseWidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/DatabaseWidget.cpp b/src/gui/DatabaseWidget.cpp
index 118713872..864b78c6e 100644
--- a/src/gui/DatabaseWidget.cpp
+++ b/src/gui/DatabaseWidget.cpp
@@ -782,9 +782,9 @@ void DatabaseWidget::performAutoType(const QString& sequence)
}
if (sequence.isEmpty()) {
- autoType()->performAutoType(currentEntry, window());
+ autoType()->performAutoType(currentEntry);
} else {
- autoType()->performAutoTypeWithSequence(currentEntry, sequence, window());
+ autoType()->performAutoTypeWithSequence(currentEntry, sequence);
}
}
}