@@ -76,7 +76,7 @@ namespace OFX {
7676 };
7777
7878 // / a generic interact, it doesn't belong to anything in particular
79- // / we need to generify this slighty more and remove the renderscale args
79+ // / we need to generify this further and remove the renderscale args
8080 // / into a derived class, as they only belong to image effect plugins
8181 class Instance : public Base , protected Property ::GetHook {
8282 protected:
@@ -148,7 +148,7 @@ namespace OFX {
148148 // don't know what to do
149149 virtual void reset (const std::string &name);
150150
151- // / the gethook virutals for pixel scale, background colour
151+ // / the gethook virtuals for pixel scale, background colour
152152 virtual double getDoubleProperty (const std::string &name, int index) const ;
153153
154154 // / for pixel scale and background colour
@@ -161,19 +161,19 @@ namespace OFX {
161161 //
162162 // Params -
163163 //
164- // time - the effect time at which changed occured
164+ // time - the effect time at which changed occurred
165165 // renderScale - the render scale
166166 virtual OfxStatus drawAction (OfxTime time, const OfxPointD &renderScale);
167167
168168 // interact action - kOfxInteractActionPenMotion
169169 //
170170 // Params -
171171 //
172- // time - the effect time at which changed occured
172+ // time - the effect time at which changed occurred
173173 // renderScale - the render scale
174174 // penX - the X position
175175 // penY - the Y position
176- // pressure - the pen pressue 0 to 1
176+ // pressure - the pen pressure 0 to 1
177177 virtual OfxStatus penMotionAction (OfxTime time,
178178 const OfxPointD &renderScale,
179179 const OfxPointD &penPos,
@@ -184,11 +184,11 @@ namespace OFX {
184184 //
185185 // Params -
186186 //
187- // time - the effect time at which changed occured
187+ // time - the effect time at which changed occurred
188188 // renderScale - the render scale
189189 // penX - the X position
190190 // penY - the Y position
191- // pressure - the pen pressue 0 to 1
191+ // pressure - the pen pressure 0 to 1
192192 virtual OfxStatus penUpAction (OfxTime time,
193193 const OfxPointD &renderScale,
194194 const OfxPointD &penPos,
@@ -199,11 +199,11 @@ namespace OFX {
199199 //
200200 // Params -
201201 //
202- // time - the effect time at which changed occured
202+ // time - the effect time at which changed occurred
203203 // renderScale - the render scale
204204 // penX - the X position
205205 // penY - the Y position
206- // pressure - the pen pressue 0 to 1
206+ // pressure - the pen pressure 0 to 1
207207 virtual OfxStatus penDownAction (OfxTime time,
208208 const OfxPointD &renderScale,
209209 const OfxPointD &penPos,
@@ -214,7 +214,7 @@ namespace OFX {
214214 //
215215 // Params -
216216 //
217- // time - the effect time at which changed occured
217+ // time - the effect time at which changed occurred
218218 // renderScale - the render scale
219219 // key - the pressed key
220220 // keyString - the pressed key string
@@ -227,7 +227,7 @@ namespace OFX {
227227 //
228228 // Params -
229229 //
230- // time - the effect time at which changed occured
230+ // time - the effect time at which changed occurred
231231 // renderScale - the render scale
232232 // key - the pressed key
233233 // keyString - the pressed key string
@@ -240,7 +240,7 @@ namespace OFX {
240240 //
241241 // Params -
242242 //
243- // time - the effect time at which changed occured
243+ // time - the effect time at which changed occurred
244244 // renderScale - the render scale
245245 // key - the pressed key
246246 // keyString - the pressed key string
@@ -253,7 +253,7 @@ namespace OFX {
253253 //
254254 // Params -
255255 //
256- // time - the effect time at which changed occured
256+ // time - the effect time at which changed occurred
257257 // renderScale - the render scale
258258 virtual OfxStatus gainFocusAction (OfxTime time,
259259 const OfxPointD &renderScale);
@@ -262,7 +262,7 @@ namespace OFX {
262262 //
263263 // Params -
264264 //
265- // time - the effect time at which changed occured
265+ // time - the effect time at which changed occurred
266266 // renderScale - the render scale
267267 virtual OfxStatus loseFocusAction (OfxTime time,
268268 const OfxPointD &renderScale);
0 commit comments