Index: propsheet.cc =================================================================== RCS file: /cvs/cygwin-apps/setup/propsheet.cc,v retrieving revision 2.15 diff -u -p -r2.15 propsheet.cc --- propsheet.cc 30 Jun 2009 04:14:29 -0000 2.15 +++ propsheet.cc 11 Sep 2010 14:14:33 -0000 @@ -441,7 +441,7 @@ bool PropSheet::SetActivePage (int i) { // Posts a message to the message queue, so this won't block - return static_cast < bool > (::PropSheet_SetCurSel (GetHWND (), NULL, i)); + return static_cast < bool > (PropSheet_SetCurSel (GetHWND (), NULL, i)); } bool @@ -449,18 +449,18 @@ PropSheet::SetActivePageByID (int resour { // Posts a message to the message queue, so this won't block return static_cast < bool > - (::PropSheet_SetCurSelByID (GetHWND (), resource_id)); + (PropSheet_SetCurSelByID (GetHWND (), resource_id)); } void PropSheet::SetButtons (DWORD flags) { // Posts a message to the message queue, so this won't block - ::PropSheet_SetWizButtons (GetHWND (), flags); + PropSheet_SetWizButtons (GetHWND (), flags); } void PropSheet::PressButton (int button) { - ::PropSheet_PressButton (GetHWND (), button); + PropSheet_PressButton (GetHWND (), button); }