[DEV] auto update volume

This commit is contained in:
2015-03-04 22:25:22 +01:00
parent 8a59126beb
commit 034c95f286
2 changed files with 206 additions and 123 deletions

View File

@@ -124,7 +124,7 @@ void river::io::Group::stop() {
RIVER_ERROR(" have " << count << " interfaces ...");
if (count == 0) {
RIVER_ERROR("GROUP :::::::::::: STOP() [START]");
for (size_t iii=0; iii<m_list.size(); ++iii) {
for (int32_t iii=m_list.size()-1; iii>=0; --iii) {
if (m_list[iii] != nullptr) {
m_list[iii]->stop();
}