diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-03-03 07:37:06 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-03-03 07:37:06 (GMT) |
commit | e384ef218722d9380988fbe3b1bd30848ceb2c5c (patch) | |
tree | 25585bf99d1fc0887149a7c617ab1faaedf6e1b3 /src/gui/kernel | |
parent | fbf487762979846452e348b711f27a67c4edbc49 (diff) | |
parent | f7b64c3f9bb76bc8dbd96852e54e698af68331cb (diff) | |
download | Qt-e384ef218722d9380988fbe3b1bd30848ceb2c5c.zip Qt-e384ef218722d9380988fbe3b1bd30848ceb2c5c.tar.gz Qt-e384ef218722d9380988fbe3b1bd30848ceb2c5c.tar.bz2 |
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/qt-multimedia-staging into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/qt-multimedia-staging:
QSound OSX; Fix memory leak.
Diffstat (limited to 'src/gui/kernel')
-rw-r--r-- | src/gui/kernel/qsound_mac.mm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/kernel/qsound_mac.mm b/src/gui/kernel/qsound_mac.mm index 61e42ba..71fd663 100644 --- a/src/gui/kernel/qsound_mac.mm +++ b/src/gui/kernel/qsound_mac.mm @@ -174,6 +174,7 @@ NSSound *QAuServerMac::createNSSound(const QString &fileName, QSound *qSound) NSSound * const nsSound = [[NSSound alloc] initWithContentsOfFile: nsFileName byReference:YES]; QMacSoundDelegate * const delegate = [[QMacSoundDelegate alloc] initWithQSound:qSound:this]; [nsSound setDelegate:delegate]; + [nsFileName release]; return nsSound; } |