- cview only, not part of the build -

change rec.show() to rec.unHide(), because there is no such thing as rec.show()
This commit is contained in:
rginda%netscape.com 2002-09-05 21:06:16 +00:00
Родитель 66ae1bdf88
Коммит 3e58ef9ae7
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -121,7 +121,7 @@ function filterInterfaces()
function filterAll (rec)
{
if (rec.isHidden)
rec.show();
rec.unHide();
cview.visibleInterfaces++;
}
@ -130,7 +130,7 @@ function filterInterfaces()
if (rec.name.search(cview.interfaceFilter) != -1)
{
if (rec.isHidden)
rec.show();
rec.unHide();
cview.visibleInterfaces++;
}
else
@ -145,7 +145,7 @@ function filterInterfaces()
if (rec.name.search(cview.interfaceFilter) == 0)
{
if (rec.isHidden)
rec.show();
rec.unHide();
cview.visibleInterfaces++;
}
else