comparison widgets/AudioDial.cpp @ 616:d632a1e87018 qt5

Build fixes for Qt5
author Chris Cannam
date Mon, 11 Mar 2013 14:23:52 +0000
parents 4806715f7a19
children 1a0dfcbffaf1
comparison
equal deleted inserted replaced
615:156a120345ae 616:d632a1e87018
508 setMappedValue(newValue); 508 setMappedValue(newValue);
509 } 509 }
510 510
511 } else { 511 } else {
512 512
513 int newPosition = QInputDialog::getInteger 513 int newPosition = QInputDialog::getInt
514 (this, 514 (this,
515 tr("Enter new value"), 515 tr("Enter new value"),
516 tr("Enter a new value from %1 to %2:") 516 tr("Enter a new value from %1 to %2:")
517 .arg(minimum()).arg(maximum()), 517 .arg(minimum()).arg(maximum()),
518 value(), minimum(), maximum(), singleStep(), &ok); 518 value(), minimum(), maximum(), singleStep(), &ok);