From: kgv Date: Thu, 22 Nov 2018 19:51:37 +0000 (+0300) Subject: 0030382: Draw Harness, ViewerTest - command vdir doesn't work anymore X-Git-Tag: V7_4_0_beta~306 X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=commitdiff_plain;h=a2fb712bead9aa015c9eb3f402fe160db13b0648 0030382: Draw Harness, ViewerTest - command vdir doesn't work anymore --- diff --git a/src/ViewerTest/ViewerTest.cxx b/src/ViewerTest/ViewerTest.cxx index 1ac56e8a9a..9e03442a2d 100644 --- a/src/ViewerTest/ViewerTest.cxx +++ b/src/ViewerTest/ViewerTest.cxx @@ -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; }