Minor doc improvements.

Change-Id: Ic14cefcf935fea822c581013f437ae61b820ddd9
Reviewed-by: Giuseppe D'Angelo <dangelog@gmail.com>
Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Reviewed-by: Shane Kearns <shane.kearns@accenture.com>
bb10
Richard Moore 2012-04-15 21:02:12 +01:00 committed by Qt by Nokia
parent 5369f50686
commit 591ad20a0b
1 changed files with 9 additions and 0 deletions

View File

@ -138,15 +138,24 @@ QSslCertificateExtension::QSslCertificateExtension()
{
}
/*!
Constructs a copy of \a other.
*/
QSslCertificateExtension::QSslCertificateExtension(const QSslCertificateExtension &other)
: d(other.d)
{
}
/*!
Destroys the extension.
*/
QSslCertificateExtension::~QSslCertificateExtension()
{
}
/*!
Assigns \a other to this extension and returns a reference to this extension.
*/
QSslCertificateExtension &QSslCertificateExtension::operator=(const QSslCertificateExtension &other)
{
d = other.d;