- 
    Bug 
- 
    Resolution: Fixed
- 
    P2: Important 
- 
    None
- 
    5.15.2
- 
    None
- 
    Windows 10 using QT Creator and C++17
This works:
QSound::play("mysounds/bells.wav");
This does not work:
QSound bells("mysounds/bells.wav");
bells.play();
Calling the static function works, but if I try to instantiate it as an object then it will not work. The same thing happens with the QSoundEffect class.