Fix parameter name mispatches
This commit is contained in:
@@ -29,9 +29,7 @@
|
||||
|
||||
namespace _detail {
|
||||
|
||||
ClosureBase::ClosureBase(ObjectHelper *helper)
|
||||
: helper_(helper) {
|
||||
}
|
||||
ClosureBase::ClosureBase(ObjectHelper *helper) : helper_(helper) {}
|
||||
|
||||
ClosureBase::~ClosureBase() {}
|
||||
|
||||
|
||||
@@ -64,7 +64,7 @@ class ClosureBase {
|
||||
class ObjectHelper : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
ObjectHelper(QObject *parent, const char *signal, ClosureBase *closure);
|
||||
ObjectHelper(QObject *sender, const char *signal, ClosureBase *closure);
|
||||
~ObjectHelper();
|
||||
|
||||
private slots:
|
||||
|
||||
@@ -82,6 +82,6 @@ extern const char *kDefaultLogLevels;
|
||||
|
||||
} // namespace logging
|
||||
|
||||
QDebug operator<<(QDebug debug, std::chrono::seconds secs);
|
||||
QDebug operator<<(QDebug dbg, std::chrono::seconds secs);
|
||||
|
||||
#endif // LOGGING_H
|
||||
|
||||
Reference in New Issue
Block a user