Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Amarok
Commits
b9c9cf69
Commit
b9c9cf69
authored
Dec 04, 2011
by
Ralf Engels
Browse files
Fix crash at exit with Qt 4.8
BUG: 285951 FIXED-IN: 2.5
parent
6c0d1a64
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
b9c9cf69
...
...
@@ -8,6 +8,7 @@ Version 2.5
Playlist's layout items.
BUGFIXES:
* Fix crash at exit with Qt 4.8
* Fix moving applets rightward in the context toolbar.
* Fix breadcrumbs not working properly for the file browser.
* Disable cover fetching action for tracks not in the collection to avoid
...
...
src/core-impl/collections/support/CollectionManager.cpp
View file @
b9c9cf69
...
...
@@ -135,7 +135,12 @@ CollectionManager::~CollectionManager()
d
->
unmanagedCollections
.
clear
();
d
->
trackProviders
.
clear
();
qDeleteAll
(
d
->
managedCollections
);
qDeleteAll
(
d
->
factories
);
// qDeleteAll seems to be partly broken in Qt 4.8, FIX: 285951
// qDeleteAll( d->factories );
while
(
!
d
->
factories
.
isEmpty
())
delete
d
->
factories
.
takeFirst
();
delete
d
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment