Fixed to compile against .NET 1.1.

This commit is contained in:
jfrijters 2007-07-04 09:16:40 +00:00
Родитель fef5a8394d
Коммит 292fe036e6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1978,7 +1978,7 @@ namespace ikvm.awt
public void setBoundsPrivate(int x, int y, int width, int height)
{
control.Invoke(new SetXYWH(SetBoundsImpl), x, y, width, height);
control.Invoke(new SetXYWH(SetBoundsImpl), new object[] { x, y, width, height });
}
private object GetBoundsImpl()