From bd6c46193d8d5948359a8f64e19ad9dd3b0bca32 Mon Sep 17 00:00:00 2001 From: akz Date: Fri, 25 Sep 2015 11:35:36 +0300 Subject: [PATCH] 0022972: Eliminate macro definitions that has compiler-provided analogs (WNT and so on) Replace removed from occt WNT preprocessor flag with _WIN32 --- src/IVtkDraw/IVtkDraw.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/IVtkDraw/IVtkDraw.cxx b/src/IVtkDraw/IVtkDraw.cxx index 7e9b53c774..d6fadddb8e 100644 --- a/src/IVtkDraw/IVtkDraw.cxx +++ b/src/IVtkDraw/IVtkDraw.cxx @@ -255,7 +255,7 @@ Standard_Integer GenerateId() const Handle(MMgt_TShared)& IVtkDraw::WClass() { static Handle(MMgt_TShared) aWindowClass; -#ifdef WNT +#ifdef _WIN32 if (aWindowClass.IsNull()) { aWindowClass = new WNT_WClass ("GWVTK_Class", DefWindowProc, @@ -302,7 +302,7 @@ void IVtkDraw::ViewerInit (Standard_Integer thePxLeft, if (isFirst) { SetDisplayConnection (new Aspect_DisplayConnection ()); -#ifdef WNT +#ifdef _WIN32 if (GetWindow().IsNull()) { GetWindow() = new WNT_Window ("IVtkTest", @@ -332,7 +332,7 @@ void IVtkDraw::ViewerInit (Standard_Integer thePxLeft, GetRenderer()->GetActiveCamera()->ParallelProjectionOn(); aRenWin->SetSize (aPxWidth, aPxHeight); -#ifdef WNT +#ifdef _WIN32 aRenWin->SetWindowId((void*)GetWindow()->HWindow()); #else Window aWindowId = GetWindow()->XWindow();