mirror of
https://github.com/fralx/LimeReport.git
synced 2025-01-11 17:18:10 +03:00
DataSourceManager::clear() has been fixed
This commit is contained in:
parent
d6fe74e29e
commit
1ae5c2fa82
@ -1437,13 +1437,13 @@ void DataSourceManager::clear(ClearMethod method)
|
|||||||
case All:
|
case All:
|
||||||
invalidateLinkedDatasources(dit.key());
|
invalidateLinkedDatasources(dit.key());
|
||||||
delete dit.value();
|
delete dit.value();
|
||||||
m_datasources.erase(dit++);
|
dit = m_datasources.erase(dit);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (owned){
|
if (owned){
|
||||||
invalidateLinkedDatasources(dit.key());
|
invalidateLinkedDatasources(dit.key());
|
||||||
delete dit.value();
|
delete dit.value();
|
||||||
m_datasources.erase(dit++);
|
dit = m_datasources.erase(dit);
|
||||||
} else {
|
} else {
|
||||||
++dit;
|
++dit;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user