1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56: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 ,
const char** )
{
if (!a3DView().IsNull())
{
return 0;
}
for (ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName anIter (GetMapOfAIS());
anIter.More(); anIter.Next())
{
theDI << "\t" << anIter.Key2().ToCString() << "\n";
theDI << "\t" << anIter.Key2() << "\n";
}
return 0;
}