From 90cc2643e9903bb324502c1ba5d24e13fc5e4469 Mon Sep 17 00:00:00 2001 From: Mike Erwin Date: Thu, 26 Feb 2015 14:11:39 -0500 Subject: cleanup: spelling & typos Comments only, no functional change. --- intern/ghost/intern/GHOST_ContextCGL.h | 2 +- intern/ghost/intern/GHOST_NDOFManagerX11.cpp | 2 +- intern/ghost/intern/GHOST_SystemWin32.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'intern') diff --git a/intern/ghost/intern/GHOST_ContextCGL.h b/intern/ghost/intern/GHOST_ContextCGL.h index 8619a130035..92fdbfc53de 100644 --- a/intern/ghost/intern/GHOST_ContextCGL.h +++ b/intern/ghost/intern/GHOST_ContextCGL.h @@ -140,7 +140,7 @@ private: const int m_contextFlags; const int m_contextResetNotificationStrategy; - /** The opgnGL drawing context */ + /** The OpenGL drawing context */ NSOpenGLContext *m_openGLContext; //static CGLEWContext *s_cglewContext; diff --git a/intern/ghost/intern/GHOST_NDOFManagerX11.cpp b/intern/ghost/intern/GHOST_NDOFManagerX11.cpp index c72485e9e1b..de44b36c73e 100644 --- a/intern/ghost/intern/GHOST_NDOFManagerX11.cpp +++ b/intern/ghost/intern/GHOST_NDOFManagerX11.cpp @@ -58,7 +58,7 @@ GHOST_NDOFManagerX11::GHOST_NDOFManagerX11(GHOST_System& sys) } else { #ifdef DEBUG - /* annoying for official builds, just adds noise and most prople don't own these */ + /* annoying for official builds, just adds noise and most people don't own these */ puts("ndof: spacenavd not found"); /* This isn't a hard error, just means the user doesn't have a 3D mouse. */ #endif diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp index f711bc0271e..30f8afd72b2 100644 --- a/intern/ghost/intern/GHOST_SystemWin32.cpp +++ b/intern/ghost/intern/GHOST_SystemWin32.cpp @@ -1128,7 +1128,7 @@ LRESULT WINAPI GHOST_SystemWin32::s_wndProc(HWND hwnd, UINT msg, WPARAM wParam, * until it finds a window that processes it. */ - /* Get the winow under the mouse and send event to it's queue. */ + /* Get the window under the mouse and send event to its queue. */ POINT mouse_pos = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; HWND mouse_hwnd = ChildWindowFromPoint(HWND_DESKTOP, mouse_pos); GHOST_WindowWin32 *mouse_window = (GHOST_WindowWin32 *)::GetWindowLongPtr(mouse_hwnd, GWLP_USERDATA); @@ -1136,7 +1136,7 @@ LRESULT WINAPI GHOST_SystemWin32::s_wndProc(HWND hwnd, UINT msg, WPARAM wParam, event = processWheelEvent(mouse_window, wParam, lParam); } else { - /* Happens when wmouse is not over of any of blender windows. */ + /* Happens when mouse is not over any of blender's windows. */ event = processWheelEvent(window, wParam, lParam); } -- cgit v1.2.3