Mercurial > trustbridge
diff ui/certificatelist.cpp @ 79:1dd8e91972a8
Add accessors to certificate's in certificatelist
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 19 Mar 2014 16:35:49 +0000 |
parents | 64c8c6350e60 |
children | 1f27d6db5ee3 |
line wrap: on
line diff
--- a/ui/certificatelist.cpp Wed Mar 19 16:35:13 2014 +0000 +++ b/ui/certificatelist.cpp Wed Mar 19 16:35:49 2014 +0000 @@ -66,3 +66,11 @@ { readList(fileName); } + +const QList<Certificate>& CertificateList::getInstallCertificates() const { + return mCertificatesInstall; +} + +const QList<Certificate>& CertificateList::getRemoveCertificates() const { + return mCertificatesRemove; +}