mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2024-12-24 15:30:40 +01:00
Fix mismatched definition
This commit is contained in:
parent
d2c747258c
commit
002fa8f4aa
@ -34,7 +34,7 @@ namespace GME {
|
|||||||
bool IsSupportedFormat(const QFileInfo &file_info);
|
bool IsSupportedFormat(const QFileInfo &file_info);
|
||||||
bool ReadFile(const QFileInfo &file_info, spb::tagreader::SongMetadata *song_info);
|
bool ReadFile(const QFileInfo &file_info, spb::tagreader::SongMetadata *song_info);
|
||||||
|
|
||||||
uint32_t UnpackBytes32(const char *const arr, size_t length);
|
uint32_t UnpackBytes32(const char *const bytes, size_t length);
|
||||||
|
|
||||||
namespace SPC {
|
namespace SPC {
|
||||||
// SPC SPEC: http://vspcplay.raphnet.net/spc_file_format.txt
|
// SPC SPEC: http://vspcplay.raphnet.net/spc_file_format.txt
|
||||||
|
@ -87,8 +87,8 @@ class ContextAlbum : public QWidget {
|
|||||||
void AutomaticCoverSearchDone();
|
void AutomaticCoverSearchDone();
|
||||||
void FadeCurrentCover(const qreal value);
|
void FadeCurrentCover(const qreal value);
|
||||||
void FadeCurrentCoverFinished();
|
void FadeCurrentCoverFinished();
|
||||||
void FadePreviousCover(SharedPtr<PreviousCover> previouscover);
|
void FadePreviousCover(SharedPtr<PreviousCover> previous_cover);
|
||||||
void FadePreviousCoverFinished(SharedPtr<PreviousCover> previouscover);
|
void FadePreviousCoverFinished(SharedPtr<PreviousCover> previous_cover);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void SearchCoverInProgress();
|
void SearchCoverInProgress();
|
||||||
|
@ -143,7 +143,7 @@ class QobuzService : public InternetService {
|
|||||||
using Param = QPair<QString, QString>;
|
using Param = QPair<QString, QString>;
|
||||||
using ParamList = QList<Param>;
|
using ParamList = QList<Param>;
|
||||||
|
|
||||||
QString DecodeAppSecret(const QString &app_secret_encoded) const;
|
QString DecodeAppSecret(const QString &app_secret_base64) const;
|
||||||
void SendSearch();
|
void SendSearch();
|
||||||
void LoginError(const QString &error = QString(), const QVariant &debug = QVariant());
|
void LoginError(const QString &error = QString(), const QVariant &debug = QVariant());
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@ class TidalRequest : public TidalBaseRequest {
|
|||||||
void ArtistsReplyReceived(QNetworkReply *reply, const int limit_requested, const int offset_requested);
|
void ArtistsReplyReceived(QNetworkReply *reply, const int limit_requested, const int offset_requested);
|
||||||
|
|
||||||
void AlbumsReplyReceived(QNetworkReply *reply, const int limit_requested, const int offset_requested);
|
void AlbumsReplyReceived(QNetworkReply *reply, const int limit_requested, const int offset_requested);
|
||||||
void AlbumsReceived(QNetworkReply *reply, const Artist &artist_artist, const int limit_requested, const int offset_requested, const bool auto_login);
|
void AlbumsReceived(QNetworkReply *reply, const Artist &artist_requested, const int limit_requested, const int offset_requested, const bool auto_login);
|
||||||
|
|
||||||
void SongsReplyReceived(QNetworkReply *reply, const int limit_requested, const int offset_requested);
|
void SongsReplyReceived(QNetworkReply *reply, const int limit_requested, const int offset_requested);
|
||||||
void SongsReceived(QNetworkReply *reply, const Artist &artist, const Album &album, const int limit_requested, const int offset_requested, const bool auto_login = false);
|
void SongsReceived(QNetworkReply *reply, const Artist &artist, const Album &album, const int limit_requested, const int offset_requested, const bool auto_login = false);
|
||||||
|
Loading…
Reference in New Issue
Block a user