began work setting several timings to use rational rather than long/double

This commit is contained in:
itsmattkc
2019-06-16 15:13:53 -07:00
parent 0acee942f4
commit 771572f65b
63 changed files with 448 additions and 397 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ FileField::FileField(NodeIO* parent) :
SetValueAt(0, "");
}
QString FileField::GetFileAt(double timecode)
QString FileField::GetFileAt(const rational& timecode)
{
return GetValueAt(timecode).toString();
}
@@ -48,7 +48,7 @@ QWidget *FileField::CreateWidget(QWidget *existing)
return efc;
}
void FileField::UpdateWidgetValue(QWidget *widget, double timecode)
void FileField::UpdateWidgetValue(QWidget *widget, const rational &timecode)
{
EmbeddedFileChooser* efc = static_cast<EmbeddedFileChooser*>(widget);