summaryrefslogtreecommitdiff
path: root/libs/imgui-1.92.1/examples
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-10-04 15:54:30 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-10-04 15:54:30 +0200
commit2855642dd16cea260f3b32351f0529328a0bcb15 (patch)
treea375d2c57e1089ba54746371674e48c9216bb8e4 /libs/imgui-1.92.1/examples
parentb8e049f02a16dc8398b2a954b561c84beda423c7 (diff)
namespacing locale, config, file_templates
Diffstat (limited to 'libs/imgui-1.92.1/examples')
-rw-r--r--libs/imgui-1.92.1/examples/libs/glfw/include/GLFW/glfw3.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/imgui-1.92.1/examples/libs/glfw/include/GLFW/glfw3.h b/libs/imgui-1.92.1/examples/libs/glfw/include/GLFW/glfw3.h
index f8ca3d6..c2e4ab1 100644
--- a/libs/imgui-1.92.1/examples/libs/glfw/include/GLFW/glfw3.h
+++ b/libs/imgui-1.92.1/examples/libs/glfw/include/GLFW/glfw3.h
@@ -2927,9 +2927,9 @@ GLFWAPI int glfwGetInputMode(GLFWwindow* window, int mode);
*/
GLFWAPI void glfwSetInputMode(GLFWwindow* window, int mode, int value);
-/*! @brief Returns the localized name of the specified printable key.
+/*! @brief Returns the locale::getd name of the specified printable key.
*
- * This function returns the localized name of the specified printable key.
+ * This function returns the locale::getd name of the specified printable key.
* This is intended for displaying key bindings to the user.
*
* If the key is `GLFW_KEY_UNKNOWN`, the scancode is used instead, otherwise
@@ -2965,7 +2965,7 @@ GLFWAPI void glfwSetInputMode(GLFWwindow* window, int mode, int value);
*
* @param[in] key The key to query, or `GLFW_KEY_UNKNOWN`.
* @param[in] scancode The scancode of the key to query.
- * @return The localized name of the key, or `NULL`.
+ * @return The locale::getd name of the key, or `NULL`.
*
* @errors Possible errors include @ref GLFW_NOT_INITIALIZED and @ref
* GLFW_PLATFORM_ERROR.