Committing in .

Complile issues for OpenVMS
 +
 obvious typo in wxWindows/src/motif/dcclient.cpp

 Modified Files:
 	wxWindows/src/common/descrip.mms
 	wxWindows/src/motif/dcclient.cpp
 	wxWindows/src/unix/utilsunx.cpp
 ----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen 2002-04-05 07:08:48 +00:00
parent ffd990f695
commit 2e99f81532
3 changed files with 7 additions and 2 deletions

View File

@ -99,6 +99,7 @@ OBJECTS1=fs_inet.obj,\
imagall.obj,\ imagall.obj,\
imagbmp.obj,\ imagbmp.obj,\
image.obj,\ image.obj,\
imagfill.obj,\
imaggif.obj,\ imaggif.obj,\
imagiff.obj,\ imagiff.obj,\
imagjpeg.obj,\ imagjpeg.obj,\
@ -218,6 +219,7 @@ SOURCES = \
imagall.cpp,\ imagall.cpp,\
imagbmp.cpp,\ imagbmp.cpp,\
image.cpp,\ image.cpp,\
imagfill.cpp,\
imaggif.cpp,\ imaggif.cpp,\
imagiff.cpp,\ imagiff.cpp,\
imagjpeg.cpp,\ imagjpeg.cpp,\
@ -375,6 +377,7 @@ iconbndl.obj : iconbndl.cpp
imagall.obj : imagall.cpp imagall.obj : imagall.cpp
imagbmp.obj : imagbmp.cpp imagbmp.obj : imagbmp.cpp
image.obj : image.cpp image.obj : image.cpp
imagfill.obj : imagfill.cpp
imaggif.obj : imaggif.cpp imaggif.obj : imaggif.cpp
imagiff.obj : imagiff.cpp imagiff.obj : imagiff.cpp
imagjpeg.obj : imagjpeg.cpp imagjpeg.obj : imagjpeg.cpp

View File

@ -257,7 +257,7 @@ void wxWindowDC::DoFloodFill( wxCoord x1, wxCoord y1,
memdc.SelectObject(wxNullBitmap); memdc.SelectObject(wxNullBitmap);
wxImage image(bitmap); wxImage image(bitmap);
image.DoFloodFill (x,y, GetBrush(), col, style, GetLogicalFunction()); image.DoFloodFill (x1,y1, GetBrush(), col, style, GetLogicalFunction());
bitmap = wxBitmap(image); bitmap = wxBitmap(image);
memdc.SelectObject(bitmap); memdc.SelectObject(bitmap);
this->Blit(0, 0, width, height, &memdc, 0, 0); this->Blit(0, 0, width, height, &memdc, 0, 0);

View File

@ -651,12 +651,14 @@ long wxExecute(wxChar **argv,
close(fd); close(fd);
} }
#ifndef __VMS
if ( flags & wxEXEC_MAKE_GROUP_LEADER ) if ( flags & wxEXEC_MAKE_GROUP_LEADER )
{ {
// Set process group to child process' pid. Then killing -pid // Set process group to child process' pid. Then killing -pid
// of the parent will kill the process and all of its children. // of the parent will kill the process and all of its children.
setsid(); setsid();
} }
#endif
} }
// redirect stdio, stdout and stderr // redirect stdio, stdout and stderr