Use right linter
This commit is contained in:
parent
a6b2be112b
commit
90da39313f
28 changed files with 35 additions and 67 deletions
|
|
@ -18,8 +18,7 @@ class HiddenEvents : public QObject
|
|||
public:
|
||||
explicit HiddenEvents(QObject *p = nullptr)
|
||||
: QObject(p)
|
||||
{
|
||||
}
|
||||
{}
|
||||
|
||||
Q_INVOKABLE void toggle(int type);
|
||||
Q_INVOKABLE void save();
|
||||
|
|
|
|||
|
|
@ -10,8 +10,7 @@
|
|||
NhekoCursorShape::NhekoCursorShape(QQuickItem *parent)
|
||||
: QQuickItem(parent)
|
||||
, currentShape_(Qt::CursorShape::ArrowCursor)
|
||||
{
|
||||
}
|
||||
{}
|
||||
|
||||
Qt::CursorShape
|
||||
NhekoCursorShape::cursorShape() const
|
||||
|
|
|
|||
|
|
@ -20,8 +20,7 @@ public:
|
|||
|
||||
UIA(QObject *parent = nullptr)
|
||||
: QObject(parent)
|
||||
{
|
||||
}
|
||||
{}
|
||||
|
||||
mtx::http::UIAHandler genericHandler(QString context);
|
||||
|
||||
|
|
|
|||
|
|
@ -45,8 +45,7 @@ public:
|
|||
, verification_status(verification_status_)
|
||||
, lastIp(lastIp_)
|
||||
, lastTs(lastTs_)
|
||||
{
|
||||
}
|
||||
{}
|
||||
DeviceInfo(const QString deviceID,
|
||||
const QString displayName,
|
||||
verification::Status verification_status_)
|
||||
|
|
@ -54,12 +53,10 @@ public:
|
|||
, display_name(displayName)
|
||||
, verification_status(verification_status_)
|
||||
, lastTs(0)
|
||||
{
|
||||
}
|
||||
{}
|
||||
DeviceInfo()
|
||||
: verification_status(verification::UNVERIFIED)
|
||||
{
|
||||
}
|
||||
{}
|
||||
|
||||
QString device_id;
|
||||
QString display_name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue