Cpp: Ignore STATUS_KEY_CONSIDERED when editing

* lang/cpp/src/editinteractor.cpp (EditInteractor::needsNoResponse):
Handle GPGME_STATUS_KEY_CONSIDERED.
This commit is contained in:
Andre Heinecke 2016-05-20 16:03:08 +02:00
parent 88f2c1c0d1
commit 5df858cbf1

View File

@ -211,6 +211,7 @@ bool EditInteractor::needsNoResponse(unsigned int status) const
case GPGME_STATUS_SIGEXPIRED: case GPGME_STATUS_SIGEXPIRED:
case GPGME_STATUS_KEYEXPIRED: case GPGME_STATUS_KEYEXPIRED:
case GPGME_STATUS_PINENTRY_LAUNCHED: case GPGME_STATUS_PINENTRY_LAUNCHED:
case GPGME_STATUS_KEY_CONSIDERED:
return true; return true;
default: default:
return false; return false;