Extended autotype syntax to allow all things in keepass2

This commit is contained in:
Marco 2017-05-15 11:42:13 +02:00 committed by thez3ro
parent 4fcedc2187
commit d524aea779
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
2 changed files with 35 additions and 3 deletions

View file

@ -20,6 +20,7 @@
#include <QApplication>
#include <QPluginLoader>
#include <iostream>
#include "config-keepassx.h"
@ -396,7 +397,7 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
QMessageBox::StandardButton reply;
reply = QMessageBox::question(0,
"AutoType",
"This AutoType command contains a very long delay. Do you really want to execute it?");
tr("This AutoType command contains a very long delay. Do you really want to execute it?"));
if (reply == QMessageBox::No) {
return list;
@ -407,7 +408,7 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
QMessageBox::StandardButton reply;
reply = QMessageBox::question(0,
"AutoType",
"This AutoType command contains arguments which are repeated very often. Do you really want to execute it?");
tr("This AutoType command contains arguments which are repeated very often. Do you really want to execute it?"));
if (reply == QMessageBox::No) {
return list;