Compare commits
2 Commits
825a451219
...
dd75e73e50
Author | SHA1 | Date |
---|---|---|
|
dd75e73e50 | |
|
0563bb8342 |
2
cmake
2
cmake
|
@ -1 +1 @@
|
|||
Subproject commit 201880ee1c54abe17abf8b04f8d889bd17a9af8e
|
||||
Subproject commit d32871be6542a9e9a066aaa1ddea8fe1a6cd2d86
|
|
@ -116,6 +116,12 @@ enum class ExtraDataType : quint8
|
|||
FramelessQuickHelper
|
||||
};
|
||||
|
||||
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
||||
inline uint qHash(ExtraDataType key, uint seed = 0) noexcept {
|
||||
return ::qHash(static_cast<quint8>(key), seed);
|
||||
}
|
||||
#endif
|
||||
|
||||
struct FRAMELESSHELPER_CORE_API FramelessExtraData
|
||||
{
|
||||
FramelessExtraData();
|
||||
|
|
Loading…
Reference in New Issue