cosmetics: list -> vector in more places

This commit is contained in:
Jean-Francois Dockes 2012-04-11 19:58:08 +02:00
parent 5462f639d3
commit a17b7523e7
44 changed files with 285 additions and 313 deletions

View file

@ -98,7 +98,8 @@ bool DocSequenceDb::getEnclosing(Rcl::Doc& doc, Rcl::Doc& pdoc)
list<string> DocSequenceDb::expand(Rcl::Doc &doc)
{
setQuery();
return m_q->expand(doc);
vector<string> v = m_q->expand(doc);
return list<string>(v.begin(), v.end());
}
string DocSequenceDb::title()