-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
woc #21
woc #21
Conversation
@@ -4,7 +4,7 @@ QString getCookieOrDefault(const QList<QNetworkCookie>& cookies, const QString& | |||
[&name](const QNetworkCookie& cookie) { return cookie.name() == name; }); | |||
if (cookie != cookies.end()) { | |||
return QString::fromUtf8(cookie->value()); | |||
} else { | |||
}else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
啊?
src/ViewModel/SongLyricViewModel.cpp
Outdated
if (lyricEntity.pureMusic) { | ||
|
||
qDebug() << "这是一首纯音乐."; | ||
emit loadSongLyricSuccess(); | ||
} else { | ||
|
||
emit loadSongLyricSuccess(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (lyricEntity.pureMusic) { | |
qDebug() << "这是一首纯音乐."; | |
emit loadSongLyricSuccess(); | |
} else { | |
emit loadSongLyricSuccess(); | |
} | |
setHasLyric(!lyricEntity.pureMusic); | |
emit loadSongLyricSuccess(); |
@@ -12,6 +12,7 @@ class SongLyricViewModel : public QAbstractListModel { | |||
QML_NAMED_ELEMENT(SongLyricViewModel) | |||
|
|||
public: | |||
QList<SongLyric> SongLyricsp(const QString& stringLyric); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's the meaning of p in SongLyricsp
?
无选做