explicit constructors

svn path=/trunk/kdesupport/qca/; revision=705822
This commit is contained in:
Justin Karneges 2007-08-28 17:16:39 +00:00
parent 5e602dcd97
commit 8ebcc36d68
4 changed files with 5 additions and 4 deletions

View File

@ -128,7 +128,7 @@ class CertItemPrivateLoader : public QObject
{ {
Q_OBJECT Q_OBJECT
public: public:
CertItemPrivateLoader(CertItemStore *store, QObject *parent = 0); explicit CertItemPrivateLoader(CertItemStore *store, QObject *parent = 0);
~CertItemPrivateLoader(); ~CertItemPrivateLoader();
void start(int id); void start(int id);

View File

@ -33,7 +33,7 @@ class CertViewDlg : public QDialog
{ {
Q_OBJECT Q_OBJECT
public: public:
CertViewDlg(const QCA::CertificateChain &chain, QWidget *parent = 0); explicit CertViewDlg(const QCA::CertificateChain &chain, QWidget *parent = 0);
~CertViewDlg(); ~CertViewDlg();
private: private:

View File

@ -951,7 +951,8 @@ public:
specified, or specified as empty, then any provider is specified, or specified as empty, then any provider is
acceptable. acceptable.
*/ */
SASL(QObject *parent = 0, const QString &provider = QString()); explicit SASL(QObject *parent = 0, const QString &provider = QString());
~SASL(); ~SASL();
/** /**

View File

@ -130,7 +130,7 @@ public:
}; };
typedef QList<Key> KeyList; typedef QList<Key> KeyList;
GpgOp(const QString &bin, QObject *parent = 0); explicit GpgOp(const QString &bin, QObject *parent = 0);
~GpgOp(); ~GpgOp();
void reset(); void reset();