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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-23 14:41:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 14:41:31 +0400
commitb8e019d8396ed102323df234df8b1cc6b35712a1 (patch)
tree64f4fdb413336113b8c92198097831941c6fc171 /source/gameengine/GameLogic/SCA_PythonKeyboard.h
parent3dd449ae4fbb2eb6f9eb63e9f9de61def58abe16 (diff)
use __ prefix on header guards to avoid mixing up defines with api functions / classes.
Diffstat (limited to 'source/gameengine/GameLogic/SCA_PythonKeyboard.h')
-rw-r--r--source/gameengine/GameLogic/SCA_PythonKeyboard.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/GameLogic/SCA_PythonKeyboard.h b/source/gameengine/GameLogic/SCA_PythonKeyboard.h
index f44bb40e13c..df5e46f8c28 100644
--- a/source/gameengine/GameLogic/SCA_PythonKeyboard.h
+++ b/source/gameengine/GameLogic/SCA_PythonKeyboard.h
@@ -24,8 +24,8 @@
* \ingroup gamelogic
*/
-#ifndef __KX_PYKEYBOARD
-#define __KX_PYKEYBOARD
+#ifndef __SCA_PYTHONKEYBOARD_H__
+#define __SCA_PYTHONKEYBOARD_H__
#include "PyObjectPlus.h"
@@ -47,5 +47,5 @@ public:
#endif
};
-#endif //__KX_PYKEYBOARD
+#endif //__SCA_PYTHONKEYBOARD_H__