Committing in .
Various patches to get the current CVS compile on OpenVMS Modified Files: wxWindows/setup.h_vms wxWindows/src/generic/descrip.mms wxWindows/src/gtk/app.cpp wxWindows/src/unix/threadpsx.cpp ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14051 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -825,7 +825,7 @@ void wxThreadInternal::Wait()
|
||||
wxMutexGuiLeave();
|
||||
|
||||
bool isDetached = m_isDetached;
|
||||
wxThreadIdType id = GetId();
|
||||
wxThreadIdType id = (wxThreadIdType) GetId();
|
||||
|
||||
wxLogTrace(TRACE_THREADS,
|
||||
_T("Starting to wait for thread %ld to exit."), id);
|
||||
@@ -1203,7 +1203,7 @@ unsigned int wxThread::GetPriority() const
|
||||
|
||||
wxThreadIdType wxThread::GetId() const
|
||||
{
|
||||
return m_internal->GetId();
|
||||
return (wxThreadIdType) m_internal->GetId();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user