utility: removed templates from utilityString functions to use std::deque by default
This commit is contained in:
@@ -133,7 +133,7 @@ void QtSearchBox::onSearchCompletionHighlighted(const QModelIndex& index)
|
||||
std::string match = m_matches[index.row()].encodeForQuery();
|
||||
tokens.push_back(match);
|
||||
|
||||
m_query = utility::join<std::deque<std::string>>(tokens, "");
|
||||
m_query = utility::join(tokens, "");
|
||||
}
|
||||
|
||||
setText(m_query);
|
||||
|
||||
Reference in New Issue
Block a user