From a2fb712bead9aa015c9eb3f402fe160db13b0648 Mon Sep 17 00:00:00 2001 From: kgv Date: Thu, 22 Nov 2018 22:51:37 +0300 Subject: [PATCH] 0030382: Draw Harness, ViewerTest - command vdir doesn't work anymore --- src/ViewerTest/ViewerTest.cxx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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; }