Cvpcb: remove macros MAX, MIN, ABS (forgotten file in my last commit)

This commit is contained in:
jean-pierre charras 2012-09-22 13:29:30 +02:00
parent b660b033ad
commit 6454d91923
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ void ITEMS_LISTBOX_BASE::OnSize( wxSizeEvent& event )
wxSize size = GetClientSize();
int width = 0;
SetColumnWidth( 0, MAX( width, size.x ) );
SetColumnWidth( 0, std::max( width, size.x ) );
event.Skip();
}