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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-09-19 07:47:27 +0300
committerCampbell Barton <campbell@blender.org>2022-09-19 07:52:27 +0300
commit6424fbca949e90991b0d6056b482b5ab6ba1fd11 (patch)
tree15293ec98673a1b07c70a62fae6621d70ae31f07 /intern
parent4baa6e57bd4240e0dab1e2a1b426698ca4d593bc (diff)
Cleanup: spelling
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_ModifierKeys.h14
-rw-r--r--intern/ghost/intern/GHOST_System.cpp2
2 files changed, 8 insertions, 8 deletions
diff --git a/intern/ghost/intern/GHOST_ModifierKeys.h b/intern/ghost/intern/GHOST_ModifierKeys.h
index f83e861f8b6..e2afc879411 100644
--- a/intern/ghost/intern/GHOST_ModifierKeys.h
+++ b/intern/ghost/intern/GHOST_ModifierKeys.h
@@ -55,19 +55,19 @@ struct GHOST_ModifierKeys {
*/
bool equals(const GHOST_ModifierKeys &keys) const;
- /** Bitfield that stores the appropriate key state. */
+ /** Bit-field that stores the appropriate key state. */
uint8_t m_LeftShift : 1;
- /** Bitfield that stores the appropriate key state. */
+ /** Bit-field that stores the appropriate key state. */
uint8_t m_RightShift : 1;
- /** Bitfield that stores the appropriate key state. */
+ /** Bit-field that stores the appropriate key state. */
uint8_t m_LeftAlt : 1;
- /** Bitfield that stores the appropriate key state. */
+ /** Bit-field that stores the appropriate key state. */
uint8_t m_RightAlt : 1;
- /** Bitfield that stores the appropriate key state. */
+ /** Bit-field that stores the appropriate key state. */
uint8_t m_LeftControl : 1;
- /** Bitfield that stores the appropriate key state. */
+ /** Bit-field that stores the appropriate key state. */
uint8_t m_RightControl : 1;
- /** Bitfield that stores the appropriate key state. */
+ /** Bit-field that stores the appropriate key state. */
uint8_t m_LeftOS : 1;
uint8_t m_RightOS : 1;
};
diff --git a/intern/ghost/intern/GHOST_System.cpp b/intern/ghost/intern/GHOST_System.cpp
index bfb7c958048..714565568dc 100644
--- a/intern/ghost/intern/GHOST_System.cpp
+++ b/intern/ghost/intern/GHOST_System.cpp
@@ -8,7 +8,7 @@
#include "GHOST_System.h"
#include <chrono>
-#include <cstdio> /* just for printf */
+#include <cstdio> /* Just for #printf. */
#include "GHOST_DisplayManager.h"
#include "GHOST_EventManager.h"