Mercurial > trustbridge
comparison 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 |
comparison
equal
deleted
inserted
replaced
78:2f5db8c70bc2 | 79:1dd8e91972a8 |
---|---|
64 | 64 |
65 CertificateList::CertificateList(const char *fileName) : mStatus(NoList) | 65 CertificateList::CertificateList(const char *fileName) : mStatus(NoList) |
66 { | 66 { |
67 readList(fileName); | 67 readList(fileName); |
68 } | 68 } |
69 | |
70 const QList<Certificate>& CertificateList::getInstallCertificates() const { | |
71 return mCertificatesInstall; | |
72 } | |
73 | |
74 const QList<Certificate>& CertificateList::getRemoveCertificates() const { | |
75 return mCertificatesRemove; | |
76 } |