Remove needless spaces

This commit is contained in:
Takuro Ashie 2022-05-24 10:52:27 +09:00 committed by Daijiro Fukuda
parent 0759632788
commit b061c0fabc
3 changed files with 5 additions and 5 deletions

View File

@ -5266,7 +5266,7 @@ GLFWAPI GLFWcharmodsfun glfwSetCharModsCallback(GLFWwindow* window, GLFWcharmods
* callback.
* @return The previously set callback, or `NULL` if no callback was set or an
* error occurred.
*
*
* @callback_signature
* @code
* void function_name(GLFWwindow* window,
@ -5300,7 +5300,7 @@ GLFWAPI GLFWpreeditfun glfwSetPreeditCallback(GLFWwindow* window, GLFWpreeditfun
* callback.
* @return The previously set callback, or `NULL` if no callback was set or an
* error occurred.
*
*
* @callback_signature
* @code
* void function_name(GLFWwindow* window)

View File

@ -800,7 +800,7 @@ static const NSRange kEmptyRange = { NSNotFound, 0 };
const NSRect frame =
[window->ns.object contentRectForFrameRect:[window->ns.object frame]];
return NSMakeRect(frame.origin.x + x,
return NSMakeRect(frame.origin.x + x,
frame.origin.y + frame.size.height - y,
0.0,
h);

View File

@ -41,8 +41,8 @@
// Returns GLFW_FALSE when the converting is not yet completed (for
// Surrogate-pair processing) and the unit is assigned to the argument
// `highsurrogate`. It will be used in the next unit's processing.
//
static GLFWbool convertToUTF32FromUTF16(WCHAR utf16_unit,
//
static GLFWbool convertToUTF32FromUTF16(WCHAR utf16_unit,
WCHAR* highsurrogate,
uint32_t* codepoint)
{