FIX #4665: Address missing sound on Qt5 Builds (#4733)

* FIX #4665: Address missing sound on Qt5 Builds

* FIX #4665: Address missing sound on Qt5 Builds

* Include both engines
This commit is contained in:
Zach H 2023-02-05 19:05:47 -08:00 committed by GitHub
parent 4c290aec57
commit f25e4785ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 6 deletions

View file

@ -15,9 +15,9 @@ class SoundEngine : public QObject
{
Q_OBJECT
public:
SoundEngine(QObject *parent = nullptr);
~SoundEngine();
void playSound(QString fileName);
explicit SoundEngine(QObject *parent = nullptr);
~SoundEngine() override;
void playSound(const QString &fileName);
QStringMap &getAvailableThemes();
private: