From 9c05a3ca23d9746639884ff57236758ff7a0d974 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 4 Apr 2002 18:04:54 +0000 Subject: [PATCH] use full 32bit range for the process ids git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14938 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/exec/exec.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/exec/exec.cpp b/samples/exec/exec.cpp index 14a5ab2d2c..d11a4ac917 100644 --- a/samples/exec/exec.cpp +++ b/samples/exec/exec.cpp @@ -376,7 +376,8 @@ void MyFrame::OnKill(wxCommandEvent& WXUNUSED(event)) _T("Enter PID:"), _T("Exec question"), m_pidLast, - 1, INT_MAX, + // we need the full unsigned int range + -INT_MAX, INT_MAX, this); if ( pid == -1 ) { -- 2.47.2