src: use wstring in symbol search

This commit is contained in:
mlangkabel
2018-02-06 21:03:54 +01:00
parent 6ae9c2eca5
commit 683b87d0b8
28 changed files with 307 additions and 291 deletions
+2 -2
View File
@@ -35,9 +35,9 @@ void QtSearchView::refreshView()
});
}
std::string QtSearchView::getQuery() const
std::wstring QtSearchView::getQuery() const
{
return m_widget->query().toStdString();
return m_widget->query().toStdWString();
}
void QtSearchView::setMatches(const std::vector<SearchMatch>& matches)