fixed gcc compile issues

This commit is contained in:
itsmattkc
2020-01-19 20:39:48 +11:00
parent 1101b58ee8
commit 4697b98980
30 changed files with 55 additions and 46 deletions
+1 -1
View File
@@ -30,5 +30,5 @@ QString TimeSlider::ValueToString(const QVariant &v)
QVariant TimeSlider::StringToValue(const QString &s, bool *ok)
{
return Timecode::timecode_to_timestamp(s, timebase_, Timecode::CurrentDisplay(), ok);
return QVariant::fromValue(Timecode::timecode_to_timestamp(s, timebase_, Timecode::CurrentDisplay(), ok));
}