[Bf-blender-cvs] [76f640c27d8] master: Cleanup: spelling

Campbell Barton noreply at git.blender.org
Tue Oct 9 00:29:17 CEST 2018


Commit: 76f640c27d896e174d3581acfd3a718772d18f11
Author: Campbell Barton
Date:   Tue Oct 9 09:28:36 2018 +1100
Branches: master
https://developer.blender.org/rB76f640c27d896e174d3581acfd3a718772d18f11

Cleanup: spelling

===================================================================

M	intern/ghost/intern/GHOST_WindowWin32.cpp
M	intern/ghost/intern/GHOST_WindowWin32.h
M	source/gameengine/Expressions/intern/InputParser.cpp
M	source/gameengine/GameLogic/SCA_MouseSensor.cpp

===================================================================

diff --git a/intern/ghost/intern/GHOST_WindowWin32.cpp b/intern/ghost/intern/GHOST_WindowWin32.cpp
index 00096c05ee3..983fffc10e6 100644
--- a/intern/ghost/intern/GHOST_WindowWin32.cpp
+++ b/intern/ghost/intern/GHOST_WindowWin32.cpp
@@ -1110,12 +1110,12 @@ GHOST_TSuccess GHOST_WindowWin32::endProgressBar()
 #ifdef WITH_INPUT_IME
 void GHOST_WindowWin32::beginIME(GHOST_TInt32 x, GHOST_TInt32 y, GHOST_TInt32 w, GHOST_TInt32 h, int completed)
 {
-	m_imeImput.BeginIME(m_hWnd, GHOST_Rect(x, y - h, x, y), (bool)completed);
+	m_imeInput.BeginIME(m_hWnd, GHOST_Rect(x, y - h, x, y), (bool)completed);
 }
 
 
 void GHOST_WindowWin32::endIME()
 {
-	m_imeImput.EndIME(m_hWnd);
+	m_imeInput.EndIME(m_hWnd);
 }
 #endif /* WITH_INPUT_IME */
diff --git a/intern/ghost/intern/GHOST_WindowWin32.h b/intern/ghost/intern/GHOST_WindowWin32.h
index c72669ed898..9907385154a 100644
--- a/intern/ghost/intern/GHOST_WindowWin32.h
+++ b/intern/ghost/intern/GHOST_WindowWin32.h
@@ -265,7 +265,7 @@ public:
 	bool m_inLiveResize;
 
 #ifdef WITH_INPUT_IME
-	GHOST_ImeWin32 *getImeInput() {return &m_imeImput;}
+	GHOST_ImeWin32 *getImeInput() {return &m_imeInput;}
 
 	void beginIME(
 	        GHOST_TInt32 x, GHOST_TInt32 y,
@@ -369,7 +369,7 @@ private:
 
 #ifdef WITH_INPUT_IME
 	/** Handle input method editors event */
-	GHOST_ImeWin32 m_imeImput;
+	GHOST_ImeWin32 m_imeInput;
 #endif
 	bool m_debug_context;
 };
diff --git a/source/gameengine/Expressions/intern/InputParser.cpp b/source/gameengine/Expressions/intern/InputParser.cpp
index 1f5f9800a33..4c1697c22c7 100644
--- a/source/gameengine/Expressions/intern/InputParser.cpp
+++ b/source/gameengine/Expressions/intern/InputParser.cpp
@@ -417,7 +417,7 @@ int CParser::Priority(int optorkind)
 
 CExpression *CParser::Ex(int i)
 {
-	// parses an expression in the imput, starting at priority i, and
+	// parses an expression in the input, starting at priority i, and
 	// returns an CExpression, containing the parsed input
 	CExpression *e1 = NULL, *e2 = NULL;
 	int opkind2;
@@ -562,7 +562,7 @@ CExpression *CParser::Ex(int i)
 
 CExpression *CParser::Expr()
 {
-	// parses an expression in the imput, and
+	// parses an expression in the input, and
 	// returns an CExpression, containing the parsed input
 	return Ex(1);
 }
diff --git a/source/gameengine/GameLogic/SCA_MouseSensor.cpp b/source/gameengine/GameLogic/SCA_MouseSensor.cpp
index c1ad1c4543a..f3a5269f3d7 100644
--- a/source/gameengine/GameLogic/SCA_MouseSensor.cpp
+++ b/source/gameengine/GameLogic/SCA_MouseSensor.cpp
@@ -202,7 +202,7 @@ bool SCA_MouseSensor::Evaluate()
 				m_val = 0;
 				result = true;
 			}
-			else //KX_NO_IMPUTSTATUS
+			else// KX_NO_INPUTSTATUS
 			{
 				if (m_val == 1)
 				{



More information about the Bf-blender-cvs mailing list