mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix qtkeychain include for Qt6 users (#4863)
This commit is contained in:
parent
131812b37b
commit
38a7ce6954
|
@ -29,6 +29,7 @@
|
|||
- Dev: Clarify signal connection lifetimes where applicable. (#4818)
|
||||
- Dev: Laid the groundwork for advanced input completion strategies. (#4639, #4846, #4853)
|
||||
- Dev: Fixed flickering when running with Direct2D on Windows. (#4851)
|
||||
- Dev: Fix qtkeychain include for Qt6 users. (#4863)
|
||||
- Dev: Add a compile-time flag `CHATTERINO_UPDATER` which can be turned off to disable update checks. (#4854)
|
||||
|
||||
## 2.4.6
|
||||
|
|
|
@ -11,7 +11,11 @@
|
|||
|
||||
#ifndef NO_QTKEYCHAIN
|
||||
# ifdef CMAKE_BUILD
|
||||
# include "qt5keychain/keychain.h"
|
||||
# if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
# include "qt6keychain/keychain.h"
|
||||
# else
|
||||
# include "qt5keychain/keychain.h"
|
||||
# endif
|
||||
# else
|
||||
# include "keychain.h"
|
||||
# endif
|
||||
|
|
Loading…
Reference in a new issue