Cvpcb: remove macros MAX, MIN, ABS (forgotten file in my last commit)
This commit is contained in:
parent
b660b033ad
commit
6454d91923
|
@ -43,7 +43,7 @@ void ITEMS_LISTBOX_BASE::OnSize( wxSizeEvent& event )
|
||||||
wxSize size = GetClientSize();
|
wxSize size = GetClientSize();
|
||||||
int width = 0;
|
int width = 0;
|
||||||
|
|
||||||
SetColumnWidth( 0, MAX( width, size.x ) );
|
SetColumnWidth( 0, std::max( width, size.x ) );
|
||||||
|
|
||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue