зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1007604 - fix unsigned comparison; r=bustage-fix
This commit is contained in:
Родитель
a7cd620c1d
Коммит
fd19dfd882
|
@ -1093,7 +1093,7 @@ nsViewManager::CallWillPaintOnObservers()
|
||||||
{
|
{
|
||||||
NS_PRECONDITION(IsRootVM(), "Must be root VM for this to be called!");
|
NS_PRECONDITION(IsRootVM(), "Must be root VM for this to be called!");
|
||||||
|
|
||||||
int32_t index;
|
uint32_t index;
|
||||||
for (index = 0; index < gViewManagers->Length(); index++) {
|
for (index = 0; index < gViewManagers->Length(); index++) {
|
||||||
nsViewManager* vm = gViewManagers->ElementAt(index);
|
nsViewManager* vm = gViewManagers->ElementAt(index);
|
||||||
if (vm->RootViewManager() == this) {
|
if (vm->RootViewManager() == this) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче