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