diff --git a/src/plugins/KDEFrameworksIntegration/kwalletpasswordbackend.cpp b/src/plugins/KDEFrameworksIntegration/kwalletpasswordbackend.cpp --- a/src/plugins/KDEFrameworksIntegration/kwalletpasswordbackend.cpp +++ b/src/plugins/KDEFrameworksIntegration/kwalletpasswordbackend.cpp @@ -21,7 +21,7 @@ #include "browserwindow.h" #include - +#include #include static PasswordEntry decodeEntry(const QByteArray &data) @@ -83,6 +83,9 @@ initialize(); if (!m_wallet) { + QMessageBox msgBox; + msgBox.setText("KWallet is disabled, please enable it to save your password"); + msgBox.exec(); return; } @@ -99,6 +102,9 @@ initialize(); if (!m_wallet) { + QMessageBox msgBox; + msgBox.setText("KWallet is disabled, please enable it to save your password"); + msgBox.exec(); return false; } @@ -119,6 +125,9 @@ initialize(); if (!m_wallet) { + QMessageBox msgBox; + msgBox.setText("KWallet is disabled, please enable it to save your password"); + msgBox.exec(); return; } @@ -140,6 +149,9 @@ initialize(); if (!m_wallet) { + QMessageBox msgBox; + msgBox.setText("KWallet is disabled, please enable it to save your password"); + msgBox.exec(); return; } @@ -157,6 +169,10 @@ initialize(); if (!m_wallet) { + + QMessageBox msgBox; + msgBox.setText("KWallet is disabled, please enable it to save your password"); + msgBox.exec(); return; }