Fix one definition rule violation in ncurses_ui.hh

The memory domain of Vector<DisplayBuffer> was different depending
on if display_buffer.hh has been included or not.
This commit is contained in:
Maxime Coste 2016-12-10 13:43:41 +00:00
parent a132985888
commit e44129577a

View File

@ -96,7 +96,7 @@ private:
struct Menu : Window
{
Vector<DisplayLine> items;
Vector<DisplayLine, MemoryDomain::Display> items;
Face fg;
Face bg;
DisplayCoord anchor;