Move AIS recent items list draw function back into class.

This commit is contained in:
Jared Boone 2016-01-17 19:08:08 -08:00
parent fb8e5b21df
commit eda6e6a5be
2 changed files with 10 additions and 2 deletions

View file

@ -151,6 +151,14 @@ private:
const EntryKey invalid_key = 0xffffffff;
void advance(const int32_t amount);
void draw(
const AISRecentEntry& entry,
const Rect& target_rect,
Painter& painter,
const Style& style,
const bool is_selected
);
};
class AISRecentEntryDetailView : public View {