Committing in .
OpenVMS updates Modified Files: wxWidgets/contrib/src/deprecated/resource.cpp wxWidgets/src/common/descrip.mms wxWidgets/src/common/wfstream.cpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
bc334f39ec
commit
b7fafe6a1f
@ -712,8 +712,14 @@ wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, wxExpr *expr,
|
|||||||
}
|
}
|
||||||
dialogItem->SetStyle(windowStyle);
|
dialogItem->SetStyle(windowStyle);
|
||||||
dialogItem->SetValue1(isModal);
|
dialogItem->SetValue1(isModal);
|
||||||
if (windowStyle & wxDIALOG_MODAL) // Uses style in wxWin 2
|
#ifdef __VMS
|
||||||
|
#pragma message disable CODCAUUNR
|
||||||
|
#endif
|
||||||
|
if (windowStyle & wxDIALOG_MODAL) // Uses style in wxWin 2
|
||||||
dialogItem->SetValue1(TRUE);
|
dialogItem->SetValue1(TRUE);
|
||||||
|
#ifdef __VMS
|
||||||
|
#pragma message enable CODCAUUNR
|
||||||
|
#endif
|
||||||
|
|
||||||
dialogItem->SetName(name);
|
dialogItem->SetName(name);
|
||||||
dialogItem->SetTitle(title);
|
dialogItem->SetTitle(title);
|
||||||
|
@ -176,7 +176,7 @@ OBJECTS_MOTIF=bmpbase.obj,gaugecmn.obj
|
|||||||
|
|
||||||
OBJECTS_X11=accesscmn.obj,bmpbase.obj,dndcmn.obj,dpycmn.obj,dseldlg.obj,\
|
OBJECTS_X11=accesscmn.obj,bmpbase.obj,dndcmn.obj,dpycmn.obj,dseldlg.obj,\
|
||||||
dynload.obj,effects.obj,fddlgcmn.obj,fs_mem.obj,gaugecmn.obj,\
|
dynload.obj,effects.obj,fddlgcmn.obj,fs_mem.obj,gaugecmn.obj,\
|
||||||
gbsizer.obj,geometry.obj,gzstream.obj,matrix.obj,radiocmn.obj,\
|
gbsizer.obj,geometry.obj,matrix.obj,radiocmn.obj,\
|
||||||
regex.obj,taskbarcmn.obj,xti.obj,xtistrm.obj,xtixml.obj
|
regex.obj,taskbarcmn.obj,xti.obj,xtistrm.obj,xtixml.obj
|
||||||
|
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
@ -317,7 +317,6 @@ SOURCES = \
|
|||||||
fs_mem.cpp,\
|
fs_mem.cpp,\
|
||||||
gbsizer.cpp,\
|
gbsizer.cpp,\
|
||||||
geometry.cpp,\
|
geometry.cpp,\
|
||||||
gzstream.cpp,\
|
|
||||||
matrix.cpp,\
|
matrix.cpp,\
|
||||||
radiocmn.cpp,\
|
radiocmn.cpp,\
|
||||||
regex.cpp,\
|
regex.cpp,\
|
||||||
@ -489,7 +488,6 @@ fddlgcmn.obj : fddlgcmn.cpp
|
|||||||
fs_mem.obj : fs_mem.cpp
|
fs_mem.obj : fs_mem.cpp
|
||||||
gbsizer.obj : gbsizer.cpp
|
gbsizer.obj : gbsizer.cpp
|
||||||
geometry.obj : geometry.cpp
|
geometry.obj : geometry.cpp
|
||||||
gzstream.obj : gzstream.cpp
|
|
||||||
matrix.obj : matrix.cpp
|
matrix.obj : matrix.cpp
|
||||||
radiocmn.obj : radiocmn.cpp
|
radiocmn.obj : radiocmn.cpp
|
||||||
regex.obj : regex.cpp
|
regex.obj : regex.cpp
|
||||||
|
@ -251,7 +251,13 @@ size_t wxFFileInputStream::OnSysRead(void *buffer, size_t size)
|
|||||||
|
|
||||||
off_t wxFFileInputStream::OnSysSeek(off_t pos, wxSeekMode mode)
|
off_t wxFFileInputStream::OnSysSeek(off_t pos, wxSeekMode mode)
|
||||||
{
|
{
|
||||||
return ( m_file->Seek(pos, mode) ? m_file->Tell() : wxInvalidOffset );
|
#ifdef __VMS
|
||||||
|
#pragma message disable intsignchange
|
||||||
|
#endif
|
||||||
|
return ( m_file->Seek(pos, mode) ? m_file->Tell() : wxInvalidOffset );
|
||||||
|
#ifdef __VMS
|
||||||
|
#pragma message enable intsignchange
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
off_t wxFFileInputStream::OnSysTell() const
|
off_t wxFFileInputStream::OnSysTell() const
|
||||||
@ -324,7 +330,13 @@ off_t wxFFileOutputStream::OnSysTell() const
|
|||||||
|
|
||||||
off_t wxFFileOutputStream::OnSysSeek(off_t pos, wxSeekMode mode)
|
off_t wxFFileOutputStream::OnSysSeek(off_t pos, wxSeekMode mode)
|
||||||
{
|
{
|
||||||
|
#ifdef __VMS
|
||||||
|
#pragma message disable intsignchange
|
||||||
|
#endif
|
||||||
return ( m_file->Seek(pos, mode) ? m_file->Tell() : wxInvalidOffset );
|
return ( m_file->Seek(pos, mode) ? m_file->Tell() : wxInvalidOffset );
|
||||||
|
#ifdef __VMS
|
||||||
|
#pragma message enable intsignchange
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxFFileOutputStream::Sync()
|
void wxFFileOutputStream::Sync()
|
||||||
|
Loading…
Reference in New Issue
Block a user