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:
authorYuki Hashimoto <hzuika>2021-07-21 16:09:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-21 16:14:03 +0300
commit22bef356aedd16c3ce004e623c56ca082c200858 (patch)
treec1de427054518bca044db6435b9294989bfb1509 /intern/ghost/GHOST_IWindow.h
parent3cfd6439c6bffced2bf3cf51d79b4a41cde5a61f (diff)
Cleanup: correct the comment in ghost
The same comments were written in clientToScreen and screenToClient in GHOST. I corrected them. Ref D11986
Diffstat (limited to 'intern/ghost/GHOST_IWindow.h')
-rw-r--r--intern/ghost/GHOST_IWindow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/GHOST_IWindow.h b/intern/ghost/GHOST_IWindow.h
index f870791b345..5f9bd808c8c 100644
--- a/intern/ghost/GHOST_IWindow.h
+++ b/intern/ghost/GHOST_IWindow.h
@@ -133,7 +133,7 @@ class GHOST_IWindow {
virtual void screenToClient(int32_t inX, int32_t inY, int32_t &outX, int32_t &outY) const = 0;
/**
- * Converts a point in screen coordinates to client rectangle coordinates
+ * Converts a point in client rectangle coordinates to screen coordinates.
* \param inX: The x-coordinate in the client rectangle.
* \param inY: The y-coordinate in the client rectangle.
* \param outX: The x-coordinate on the screen.