1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix some typos

This commit is contained in:
Tom Poole 2022-01-25 11:43:53 +00:00
parent 3366ad4ed4
commit c072b1bc8e
24 changed files with 35 additions and 35 deletions

View file

@ -1305,7 +1305,7 @@ struct CameraDevice::ViewerComponent : public UIViewComponent
{
static JuceCameraDeviceViewerClass cls;
// Initial size that can be overriden later.
// Initial size that can be overridden later.
setSize (640, 480);
auto view = [cls.createInstance() init];

View file

@ -362,7 +362,7 @@ struct CameraDevice::Pimpl : public ChangeBroadcaster
using Fn = HRESULT (*) (IWMProfileManager**);
// This function is available on Windows 2000 and up, but we load it at runtime anway
// This function is available on Windows 2000 and up, but we load it at runtime anyway
// because some versions of MinGW ship with libraries that don't include this symbol.
if (auto* fn = reinterpret_cast<Fn> (wmvcoreLibrary.getFunction ("WMCreateProfileManager")))
hr = fn (profileManager.resetAndGetPointerAddress());