diff --git a/tools/TInspectorAPI/TInspectorAPI_Communicator.cxx b/tools/TInspectorAPI/TInspectorAPI_Communicator.cxx index 877f6ee86f..77babd24d8 100644 --- a/tools/TInspectorAPI/TInspectorAPI_Communicator.cxx +++ b/tools/TInspectorAPI/TInspectorAPI_Communicator.cxx @@ -39,6 +39,9 @@ TInspectorAPI_Communicator* TInspectorAPI_Communicator::LoadPluginLibrary TCollection_AsciiString aPluginLibraryName = thePluginName; #ifdef _WIN32 aPluginLibraryName += ".dll"; +#elif __APPLE__ + aPluginLibraryName.Prepend ("lib"); + aPluginLibraryName += ".dylib"; #else aPluginLibraryName.Prepend ("lib"); aPluginLibraryName += ".so"; diff --git a/tools/VInspector/VInspector_Window.cxx b/tools/VInspector/VInspector_Window.cxx index 08a7bbac20..3ab563417e 100644 --- a/tools/VInspector/VInspector_Window.cxx +++ b/tools/VInspector/VInspector_Window.cxx @@ -438,7 +438,7 @@ bool VInspector_Window::OpenFile(const TCollection_AsciiString& theFileName) Handle(AIS_Shape) aPresentation = new AIS_Shape (aShape); aPresentation->Attributes()->SetAutoTriangulation (Standard_False); - View_Displayer* aDisplayer = myViewWindow->Displayer(); + View_Displayer* aDisplayer = displayer(); aDisplayer->DisplayPresentation (aPresentation); aContext->UpdateCurrentViewer();