diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-30 11:23:37 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-30 11:23:37 +0200 |
commit | c896cc340d7e6e0878b3249c5792e6d88a12cf42 (patch) | |
tree | fd0a7a61ff1d07f301f2188de5cb6fa473134897 /src/websslinfo.h | |
parent | A tiny improvement in the error page, showing a fat icon.. :) (diff) | |
download | rekonq-c896cc340d7e6e0878b3249c5792e6d88a12cf42.tar.xz |
A coding style round
Diffstat (limited to 'src/websslinfo.h')
-rw-r--r-- | src/websslinfo.h | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/src/websslinfo.h b/src/websslinfo.h index 433cf053..4ac708cc 100644 --- a/src/websslinfo.h +++ b/src/websslinfo.h @@ -34,40 +34,40 @@ class WebSslInfo { public: - WebSslInfo(); - WebSslInfo(const WebSslInfo&); - virtual ~WebSslInfo(); + WebSslInfo(); + WebSslInfo(const WebSslInfo&); + virtual ~WebSslInfo(); - bool isValid() const; - QUrl url() const; - QHostAddress peerAddress() const; - QHostAddress parentAddress() const; - QString ciphers() const; - QString protocol() const; - QString certificateErrors() const; - int supportedChiperBits () const; - int usedChiperBits () const; - QList<QSslCertificate> certificateChain() const; + bool isValid() const; + QUrl url() const; + QHostAddress peerAddress() const; + QHostAddress parentAddress() const; + QString ciphers() const; + QString protocol() const; + QString certificateErrors() const; + int supportedChiperBits() const; + int usedChiperBits() const; + QList<QSslCertificate> certificateChain() const; - QVariant toMetaData() const; - void fromMetaData (const QVariant &); + QVariant toMetaData() const; + void fromMetaData(const QVariant &); - void setUrl (const QUrl &url); - WebSslInfo& operator = (const WebSslInfo&); + void setUrl(const QUrl &url); + WebSslInfo& operator = (const WebSslInfo&); protected: - void setCiphers(const QString& ciphers); - void setProtocol(const QString& protocol); - void setPeerAddress(const QString& address); - void setParentAddress(const QString& address); - void setCertificateChain(const QByteArray& chain); - void setCertificateErrors(const QString& certErrors); - void setUsedCipherBits(const QString& bits); - void setSupportedCipherBits(const QString& bits); + void setCiphers(const QString& ciphers); + void setProtocol(const QString& protocol); + void setPeerAddress(const QString& address); + void setParentAddress(const QString& address); + void setCertificateChain(const QByteArray& chain); + void setCertificateErrors(const QString& certErrors); + void setUsedCipherBits(const QString& bits); + void setSupportedCipherBits(const QString& bits); private: - class WebSslInfoPrivate; - WebSslInfoPrivate* d; + class WebSslInfoPrivate; + WebSslInfoPrivate* d; }; #endif // WEBSSLINFO_H |