Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Examples/ColourSpace/colourspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ getClipPreferences( OfxImageEffectHandle effect, OfxPropertySetHandle /*inArgs*/
OfxPropertySetHandle effectProps;
gEffectHost->getPropertySet(effect, &effectProps);

// retieve the colour management style that the host has decided we shall use
// reteive the colour management style that the host has decided we shall use
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be "retrieve" (and below)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ColourManagementStyle active_style = ColourManagementStyle::None;
char * style;
if(gPropHost->propGetString(effectProps, kOfxImageEffectPropColourManagementStyle, 0, &style) == kOfxStatOK) {
Expand Down Expand Up @@ -606,7 +606,7 @@ getOutputColourspace( OfxImageEffectHandle effect, OfxPropertySetHandle /*inAr
OfxPropertySetHandle effectProps;
gEffectHost->getPropertySet(effect, &effectProps);

// retieve the colour management style that the host has decided we shall use
// reteive the colour management style that the host has decided we shall use
ColourManagementStyle active_style = ColourManagementStyle::None;
char * style;
if(gPropHost->propGetString(effectProps, kOfxImageEffectPropColourManagementStyle, 0, &style) == kOfxStatOK) {
Expand Down
Loading