Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarley Acheson <harley.acheson@gmail.com>2020-10-19 18:51:50 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-10-19 19:11:00 +0300
commit84ef3b80de4915a24a9fd2fd214d0fa44e59b854 (patch)
treecb96a1acf6e63988a6167744c08ffd3a5e6d1a8d /intern/ghost
parenta9f2641cb64c6e3bfd2d9b162f4ede4efc988244 (diff)
Spelling: Miscellaneous
Corrects 34 miscellaneous misspelled words. Differential Revision: https://developer.blender.org/D9248 Reviewed by Campbell Barton
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_CallbackEventConsumer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_CallbackEventConsumer.h b/intern/ghost/intern/GHOST_CallbackEventConsumer.h
index a1664e77717..9a76f4b031f 100644
--- a/intern/ghost/intern/GHOST_CallbackEventConsumer.h
+++ b/intern/ghost/intern/GHOST_CallbackEventConsumer.h
@@ -36,7 +36,7 @@ class GHOST_CallbackEventConsumer : public GHOST_IEventConsumer {
/**
* Constructor.
* \param eventCallback The call-back routine invoked.
- * \param userData The data passed back though the call-back routine.
+ * \param userData The data passed back through the call-back routine.
*/
GHOST_CallbackEventConsumer(GHOST_EventCallbackProcPtr eventCallback,
GHOST_TUserDataPtr userData);
@@ -58,7 +58,7 @@ class GHOST_CallbackEventConsumer : public GHOST_IEventConsumer {
protected:
/** The call-back routine invoked. */
GHOST_EventCallbackProcPtr m_eventCallback;
- /** The data passed back though the call-back routine. */
+ /** The data passed back through the call-back routine. */
GHOST_TUserDataPtr m_userData;
#ifdef WITH_CXX_GUARDEDALLOC