forked from mia/Aegisub
87abcddd87
Originally committed to SVN as r5502.
14 lines
355 B
C++
14 lines
355 B
C++
#include "compat.h"
|
|
#include "main.h"
|
|
|
|
#ifndef AGI_PRE
|
|
#include <algorithm>
|
|
#endif
|
|
|
|
wxArrayString lagi_MRU_wxAS(const wxString &list) {
|
|
const agi::MRUManager::MRUListMap *map = config::mru->Get(STD_STR(list));
|
|
wxArrayString work;
|
|
work.reserve(map->size());
|
|
transform(map->begin(), map->end(), std::back_inserter(work), lagi_wxString);
|
|
return work;
|
|
}
|