rahulch

Untitled

Oct 15th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. QString PeopleIdentificationMainWindow::getQueryString()
  2. {
  3.     QString str = this->m_query.lastQuery();
  4.     QMapIterator<QString, QVariant> it(this->m_query.boundValues());
  5.     while (it.hasNext())
  6.     {
  7.         it.next();
  8.         str.replace(it.key(), it.value().toString());
  9.     }
  10.     return str;
  11. }
Add Comment
Please, Sign In to add comment