Qt: Remove unused variable

* lang/qt/src/qgpgmerefreshkeysjob.cpp (slotStatus): Remove
unused variable typ.
This commit is contained in:
Andre Heinecke 2016-08-10 12:06:39 +02:00
parent a27d7755d0
commit d467018ce3

View File

@ -176,7 +176,7 @@ void QGpgME::QGpgMERefreshKeysJob::slotStatus(QProcess *proc, const QString &typ
}
const QString what = *++it;
ok = false;
const int typ = (*++it).toInt(&ok);
(*++it).toInt(&ok);
if (!ok) {
qCDebug(GPGPME_BACKEND_LOG) << "expected number for \"type\", got something else";
return;