Remove explicit twice
This commit is contained in:
parent
dc36aee7ff
commit
f1115ba706
@ -40,7 +40,7 @@ class MockNetworkReply : public QNetworkReply {
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
MockNetworkReply();
|
MockNetworkReply();
|
||||||
explicit explicit MockNetworkReply(const QByteArray& data);
|
explicit MockNetworkReply(const QByteArray& data);
|
||||||
|
|
||||||
// Use these to set expectations.
|
// Use these to set expectations.
|
||||||
void SetData(const QByteArray& data);
|
void SetData(const QByteArray& data);
|
||||||
|
@ -62,13 +62,13 @@ Q_DECLARE_METATYPE(QModelIndex)
|
|||||||
|
|
||||||
class TemporaryResource : public QTemporaryFile {
|
class TemporaryResource : public QTemporaryFile {
|
||||||
public:
|
public:
|
||||||
explicit explicit TemporaryResource(const QString& filename);
|
explicit TemporaryResource(const QString& filename);
|
||||||
};
|
};
|
||||||
|
|
||||||
class TestQObject : public QObject {
|
class TestQObject : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit explicit TestQObject(QObject* parent = nullptr);
|
explicit TestQObject(QObject* parent = nullptr);
|
||||||
|
|
||||||
void Emit();
|
void Emit();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user