2014-06-30 19:39:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-06-28 21:36:56 +04:00
|
|
|
|
|
|
|
#include "nsTObserverArray.h"
|
|
|
|
|
|
|
|
void
|
2007-12-20 10:30:04 +03:00
|
|
|
nsTObserverArray_base::AdjustIterators(index_type aModPos,
|
2014-06-27 05:35:39 +04:00
|
|
|
diff_type aAdjustment)
|
2006-06-28 21:36:56 +04:00
|
|
|
{
|
2014-06-27 05:35:39 +04:00
|
|
|
NS_PRECONDITION(aAdjustment == -1 || aAdjustment == 1, "invalid adjustment");
|
2006-06-28 21:36:56 +04:00
|
|
|
Iterator_base* iter = mIterators;
|
|
|
|
while (iter) {
|
|
|
|
if (iter->mPosition > aModPos) {
|
|
|
|
iter->mPosition += aAdjustment;
|
|
|
|
}
|
|
|
|
iter = iter->mNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-20 10:30:04 +03:00
|
|
|
nsTObserverArray_base::ClearIterators()
|
2006-06-28 21:36:56 +04:00
|
|
|
{
|
|
|
|
Iterator_base* iter = mIterators;
|
|
|
|
while (iter) {
|
|
|
|
iter->mPosition = 0;
|
|
|
|
iter = iter->mNext;
|
|
|
|
}
|
|
|
|
}
|