1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0022972: Eliminate macro definitions that has compiler-provided analogs (WNT and so on)

Replace removed from occt WNT preprocessor flag with _WIN32
This commit is contained in:
akz 2015-09-25 11:35:36 +03:00 committed by bugmaster
parent ed5ca017c7
commit bd6c46193d

View File

@ -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();