mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-24 01:54:22 +00:00
This commit is contained in:
parent
de37ff7979
commit
3b1ba65de3
2 changed files with 8 additions and 3 deletions
|
|
@ -84,7 +84,8 @@ static NSString* juceStringToNS (const JUCE_NAMESPACE::String& s)
|
|||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
return JUCE_NAMESPACE::File (JUCE_NAMESPACE::String::fromUTF8 ((const uint8*) filenameUTF8))
|
||||
.isDirectory();
|
||||
}
|
||||
@end
|
||||
|
||||
|
|
|
|||
|
|
@ -68770,7 +68770,10 @@ void QuickTimeMovieComponent::setSpeed (const float newSpeed)
|
|||
void QuickTimeMovieComponent::setMovieVolume (const float newVolume)
|
||||
{
|
||||
if (qtMovie != 0)
|
||||
{
|
||||
qtMovie->PutAudioVolume (newVolume);
|
||||
qtMovie->PutAudioMute (newVolume <= 0);
|
||||
}
|
||||
}
|
||||
|
||||
float QuickTimeMovieComponent::getMovieVolume() const
|
||||
|
|
@ -240377,7 +240380,7 @@ public:
|
|||
shouldDeactivateTitleBar = oldDeactivate;
|
||||
}
|
||||
|
||||
void textInputRequired (int x, int y)
|
||||
void textInputRequired (int /*x*/, int /*y*/)
|
||||
{
|
||||
if (! hasCreatedCaret)
|
||||
{
|
||||
|
|
@ -255888,7 +255891,8 @@ static NSString* juceStringToNS (const JUCE_NAMESPACE::String& s)
|
|||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
return JUCE_NAMESPACE::File (JUCE_NAMESPACE::String::fromUTF8 ((const uint8*) filenameUTF8))
|
||||
.isDirectory();
|
||||
}
|
||||
@end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue