Enforce interCaps Mozilla XPIDL style (r=shaver).

This commit is contained in:
brendan%mozilla.org 2006-09-14 05:50:11 +00:00
Родитель fd9217f7b9
Коммит cc51a244c8
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1512,20 +1512,20 @@ function TileWindow()
var yOffset = screen.availRight;
do
{
var currentWindow = windowManagerInterface.convertISupportsToDOMWindow ( enumerator.GetNext() );
var currentWindow = windowManagerInterface.convertISupportsToDOMWindow ( enumerator.getNext() );
if ( currentWindow.screenX == screenX && currentWindow.screenY == screenY )
{
alreadyThere = true;
break;
}
} while ( enumerator.HasMoreElements() )
} while ( enumerator.hasMoreElements() )
if ( alreadyThere )
{
enumerator = windowManagerInterface.getEnumerator( null );
do
{
var currentWindow = windowManagerInterface.convertISupportsToDOMWindow ( enumerator.GetNext() );
var currentWindow = windowManagerInterface.convertISupportsToDOMWindow ( enumerator.getNext() );
if ( currentWindow.screenX == screenX+xOffset*xShift+yOffset*xShift && currentWindow.screenY == screenY+yShift*xOffset && window != currentWindow )
{
xOffset++;
@ -1537,7 +1537,7 @@ function TileWindow()
}
enumerator = windowManagerInterface.getEnumerator( null );
}
} while ( enumerator.HasMoreElements() )
} while ( enumerator.hasMoreElements() )
}
if ( xOffset > 0 || yOffset >0 )