comparison main/OSCHandler.cpp @ 920:a824fe3f9f45 cxx11

More type fixes
author Chris Cannam
date Tue, 10 Mar 2015 13:22:10 +0000
parents 73a5884a0975
children a16456ca5e71
comparison
equal deleted inserted replaced
919:ad59c14e9e6b 920:a824fe3f9f45
231 } else if (message.getMethod() == "select" || 231 } else if (message.getMethod() == "select" ||
232 message.getMethod() == "addselect") { 232 message.getMethod() == "addselect") {
233 233
234 if (getMainModel()) { 234 if (getMainModel()) {
235 235
236 int f0 = getMainModel()->getStartFrame(); 236 sv_frame_t f0 = getMainModel()->getStartFrame();
237 int f1 = getMainModel()->getEndFrame(); 237 sv_frame_t f1 = getMainModel()->getEndFrame();
238 238
239 bool done = false; 239 bool done = false;
240 240
241 if (message.getArgCount() == 2 && 241 if (message.getArgCount() == 2 &&
242 message.getArg(0).canConvert(QVariant::Double) && 242 message.getArg(0).canConvert(QVariant::Double) &&