mirror of
https://github.com/QuasarApp/qca.git
synced 2025-05-21 06:29:33 +00:00
explicit constructors
svn path=/trunk/kdesupport/qca/; revision=705822
This commit is contained in:
parent
5e602dcd97
commit
8ebcc36d68
@ -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);
|
||||||
|
@ -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:
|
||||||
|
@ -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();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user