mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-18 16:32:16 -07:00
add missing override and explicit specifiers in src/utility
This commit is contained in:
parent
3b2c3e8c2f
commit
9a2e08022e
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@ class SequenceEdit : public QWidget
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
SequenceEdit(const QString &_shortcutName, QWidget *parent = nullptr);
|
explicit SequenceEdit(const QString &_shortcutName, QWidget *parent = nullptr);
|
||||||
QString getSequence();
|
QString getSequence();
|
||||||
void setShortcutName(const QString &_shortcutName);
|
void setShortcutName(const QString &_shortcutName);
|
||||||
void refreshShortcut();
|
void refreshShortcut();
|
||||||
|
|
@ -23,7 +23,7 @@ private slots:
|
||||||
void restoreDefault();
|
void restoreDefault();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool eventFilter(QObject *, QEvent *event);
|
bool eventFilter(QObject *, QEvent *event) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QString shortcutName;
|
QString shortcutName;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue