mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-23 08:29:47 +00:00
fix Qt6 deprecation warnings
This commit is contained in:
parent
b25e293cc8
commit
49c72efcd3
12 changed files with 94 additions and 0 deletions
|
@ -25,7 +25,11 @@ protected:
|
|||
void mousePressEvent(QMouseEvent* event) override;
|
||||
|
||||
private slots:
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
||||
void OnUIValueChanged(Qt::CheckState new_value);
|
||||
#else
|
||||
void OnUIValueChanged(int new_value);
|
||||
#endif
|
||||
void ApplyControllerValueChange();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue