Connection syntax migration (#637)

This commit is contained in:
Jonas Kvinge
2021-01-26 16:48:04 +01:00
committed by GitHub
parent d57f6303f4
commit bf7c8df353
362 changed files with 2452 additions and 2434 deletions

View File

@@ -138,17 +138,17 @@ public:
void FadeoutFinishedSignal();
void StatusText(const QString &text);
void Error(const QString &text);
void StatusText(QString text);
void Error(QString text);
// Emitted when there was a fatal error
void FatalError();
// Emitted when Engine was unable to play a song with the given QUrl.
void InvalidSongRequested(const QUrl &url);
void InvalidSongRequested(QUrl url);
// Emitted when Engine successfully started playing a song with the given QUrl.
void ValidSongRequested(const QUrl &url);
void ValidSongRequested(QUrl url);
void MetaData(const Engine::SimpleMetaBundle&);
void MetaData(Engine::SimpleMetaBundle);
// Signals that the engine's state has changed (a stream was stopped for example).
// Always use the state from event, because it's not guaranteed that immediate subsequent call to state() won't return a stale value.
@@ -235,4 +235,4 @@ struct SimpleMetaBundle {
Q_DECLARE_METATYPE(EngineBase::OutputDetails)
#endif
#endif // ENGINEBASE_H