comparison widgets/TransformFinder.cpp @ 946:36cddc3de023 alignment_view

Merge from default branch
author Chris Cannam
date Mon, 20 Apr 2015 09:19:52 +0100
parents 4a578a360011
children c8a6fd3f9dff
comparison
equal deleted inserted replaced
897:499b637f2a26 946:36cddc3de023
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