|
|
@ -235,7 +235,7 @@ bool AskPassphraseDialog::eventFilter(QObject *object, QEvent *event)
|
|
|
|
if (str.length() != 0) {
|
|
|
|
if (str.length() != 0) {
|
|
|
|
const QChar *psz = str.unicode();
|
|
|
|
const QChar *psz = str.unicode();
|
|
|
|
bool fShift = (ke->modifiers() & Qt::ShiftModifier) != 0;
|
|
|
|
bool fShift = (ke->modifiers() & Qt::ShiftModifier) != 0;
|
|
|
|
if ((fShift && psz->isLower()) || (!fShift && psz->isUpper())) {
|
|
|
|
if ((fShift && *psz >= 'a' && *psz <= 'z') || (!fShift && *psz >= 'A' && *psz <= 'Z')) {
|
|
|
|
fCapsLock = true;
|
|
|
|
fCapsLock = true;
|
|
|
|
ui->capsLabel->setText(tr("Warning: The Caps Lock key is on!"));
|
|
|
|
ui->capsLabel->setText(tr("Warning: The Caps Lock key is on!"));
|
|
|
|
} else if (psz->isLetter()) {
|
|
|
|
} else if (psz->isLetter()) {
|
|
|
|