1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-10 18:51:21 +03:00

0030382: Draw Harness, ViewerTest - command vdir doesn't work anymore

This commit is contained in:
kgv 2018-11-22 22:51:37 +03:00
parent 1d54b80764
commit a2fb712bea

View File

@ -881,15 +881,10 @@ static int VDir (Draw_Interpretor& theDI,
Standard_Integer , Standard_Integer ,
const char** ) const char** )
{ {
if (!a3DView().IsNull())
{
return 0;
}
for (ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName anIter (GetMapOfAIS()); for (ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName anIter (GetMapOfAIS());
anIter.More(); anIter.Next()) anIter.More(); anIter.Next())
{ {
theDI << "\t" << anIter.Key2().ToCString() << "\n"; theDI << "\t" << anIter.Key2() << "\n";
} }
return 0; return 0;
} }