Mercurial > hg > svgui
comparison widgets/TransformFinder.cpp @ 908:4a578a360011 cxx11
More type fixes
author | Chris Cannam |
---|---|
date | Tue, 10 Mar 2015 13:22:10 +0000 |
parents | e4773943c9c1 |
children | c8a6fd3f9dff |
comparison
equal
deleted
inserted
replaced
907:28d05ae8741c | 908:4a578a360011 |
---|---|
223 } | 223 } |
224 | 224 |
225 if (m_sortedResults.size() < sorted.size()) { | 225 if (m_sortedResults.size() < sorted.size()) { |
226 m_infoLabel->setText | 226 m_infoLabel->setText |
227 (tr("Found %n description(s) containing <b>%1</b>, showing the first %2 only", | 227 (tr("Found %n description(s) containing <b>%1</b>, showing the first %2 only", |
228 0, sorted.size()).arg(text).arg(m_sortedResults.size())); | 228 0, int(sorted.size())).arg(text).arg(m_sortedResults.size())); |
229 } else { | 229 } else { |
230 m_infoLabel->setText | 230 m_infoLabel->setText |
231 (tr("Found %n description(s) containing <b>%1</b>", | 231 (tr("Found %n description(s) containing <b>%1</b>", |
232 0, sorted.size()).arg(text)); | 232 0, int(sorted.size())).arg(text)); |
233 } | 233 } |
234 | 234 |
235 return; | 235 return; |
236 } | 236 } |
237 | 237 |