Commit 06d208ea authored by Tristan Matthews's avatar Tristan Matthews

Qt: SeekStyle: fix uninitialized variable (cid #1313826)

Possibly refs #13841
parent 93ff5fca
...@@ -34,7 +34,8 @@ ...@@ -34,7 +34,8 @@
#define CHAPTERSSPOTSIZE 3 #define CHAPTERSSPOTSIZE 3
SeekStyle::SeekStyleOption::SeekStyleOption() SeekStyle::SeekStyleOption::SeekStyleOption()
: QStyleOptionSlider(), buffering( 1.0 ), length(0), animate(false), animationopacity( 1.0 ) : QStyleOptionSlider(), buffering( 1.0 ), length(0), animate(false), animationopacity( 1.0 ),
animationloading(0.0)
{ {
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment