mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Tidied-up a few stray sign-conversion warnings.
This commit is contained in:
parent
995839429e
commit
43252dc605
8 changed files with 76 additions and 74 deletions
|
|
@ -221,7 +221,7 @@ void QuickTimeMovieComponent::setPosition (const double seconds)
|
|||
if (movie != 0)
|
||||
{
|
||||
QTTime t;
|
||||
t.timeValue = (uint64) (100000.0 * seconds);
|
||||
t.timeValue = (long long) (100000.0 * seconds);
|
||||
t.timeScale = 100000;
|
||||
t.flags = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue