mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2025-02-02 02:26:44 +01:00
Change return type of qHash with Qt 6 to size_t
This commit is contained in:
parent
4dcae4ce21
commit
042da74955
@ -1500,7 +1500,11 @@ bool Song::operator!=(const Song &other) const {
|
||||
return source() != other.source() || url() != other.url() || beginning_nanosec() != other.beginning_nanosec();
|
||||
}
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
size_t qHash(const Song &song) {
|
||||
#else
|
||||
uint qHash(const Song &song) {
|
||||
#endif
|
||||
// Should compare the same fields as operator==
|
||||
return qHash(song.url().toString()) ^ qHash(song.beginning_nanosec());
|
||||
}
|
||||
|
@ -378,7 +378,11 @@ Q_DECLARE_METATYPE(Song)
|
||||
typedef QList<Song> SongList;
|
||||
Q_DECLARE_METATYPE(QList<Song>)
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
size_t qHash(const Song &song);
|
||||
#else
|
||||
uint qHash(const Song &song);
|
||||
#endif
|
||||
// Hash function using field checked in IsSimilar function
|
||||
uint HashSimilar(const Song &song);
|
||||
|
||||
|
@ -109,7 +109,11 @@ class MacOsDeviceLister : public DeviceLister {
|
||||
static QSet<MTPDevice> sMTPDeviceList;
|
||||
};
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
size_t qHash(const MacOsDeviceLister::MTPDevice& device);
|
||||
#else
|
||||
uint qHash(const MacOsDeviceLister::MTPDevice& device);
|
||||
#endif
|
||||
inline bool operator==(const MacOsDeviceLister::MTPDevice& a, const MacOsDeviceLister::MTPDevice& b) {
|
||||
return (a.vendor_id == b.vendor_id) && (a.product_id == b.product_id);
|
||||
}
|
||||
|
@ -100,7 +100,11 @@ class ScopedIOObject {
|
||||
|
||||
QSet<MacOsDeviceLister::MTPDevice> MacOsDeviceLister::sMTPDeviceList;
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
size_t qHash(const MacOsDeviceLister::MTPDevice& d) {
|
||||
#else
|
||||
uint qHash(const MacOsDeviceLister::MTPDevice& d) {
|
||||
#endif
|
||||
return qHash(d.vendor_id) ^ qHash(d.product_id);
|
||||
}
|
||||
|
||||
|
@ -96,7 +96,11 @@ class InternetSearchModel : public QStandardItemModel {
|
||||
|
||||
};
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
inline size_t qHash(const InternetSearchModel::ContainerKey &key) {
|
||||
#else
|
||||
inline uint qHash(const InternetSearchModel::ContainerKey &key) {
|
||||
#endif
|
||||
return qHash(key.group_[0]) ^ qHash(key.group_[1]) ^ qHash(key.group_[2]);
|
||||
}
|
||||
|
||||
|
@ -218,7 +218,11 @@ class MusicBrainzClient : public QObject {
|
||||
|
||||
};
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
inline size_t qHash(const MusicBrainzClient::Result& result) {
|
||||
#else
|
||||
inline uint qHash(const MusicBrainzClient::Result& result) {
|
||||
#endif
|
||||
return qHash(result.album_) ^ qHash(result.artist_) ^ result.duration_msec_ ^ qHash(result.title_) ^ result.track_ ^ result.year_;
|
||||
}
|
||||
|
||||
|
@ -84,7 +84,11 @@ bool PlaylistFilter::filterAcceptsRow(int row, const QModelIndex &parent) const
|
||||
QString filter = filterRegExp().pattern();
|
||||
#endif
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
size_t hash = qHash(filter);
|
||||
#else
|
||||
uint hash = qHash(filter);
|
||||
#endif
|
||||
if (hash != query_hash_) {
|
||||
// Parse the query
|
||||
FilterParser p(filter, column_names_, numerical_columns_);
|
||||
|
@ -47,10 +47,14 @@ class PlaylistFilter : public QSortFilterProxyModel {
|
||||
// public so Playlist::NextVirtualIndex and friends can get at it
|
||||
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override;
|
||||
|
||||
private:
|
||||
private:
|
||||
// Mutable because they're modified from filterAcceptsRow() const
|
||||
mutable QScopedPointer<FilterTree> filter_tree_;
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
mutable size_t query_hash_;
|
||||
#else
|
||||
mutable uint query_hash_;
|
||||
#endif
|
||||
|
||||
QMap<QString, int> column_names_;
|
||||
QSet<int> numerical_columns_;
|
||||
|
Loading…
x
Reference in New Issue
Block a user