mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-29 21:56:58 +00:00
Add support for building against Qt 6
This commit is contained in:
parent
f8c603a2dd
commit
004e8a80b2
24 changed files with 545 additions and 84 deletions
|
@ -22,7 +22,11 @@ public:
|
|||
void SetDescription(QString description) { m_description = std::move(description); }
|
||||
|
||||
private:
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
void enterEvent(QEvent* event) override
|
||||
#else
|
||||
void enterEvent(QEnterEvent* event) override
|
||||
#endif
|
||||
{
|
||||
if (m_timer_id)
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue