Skip to content

Commit f5003af

Browse files
authored
Docs: Fix some typos (#8505)
1 parent 102f3f3 commit f5003af

11 files changed

+29
-29
lines changed

backends/imgui_impl_osx.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ static void ImGui_ImplOSX_UpdateMouseCursor()
537537
else
538538
{
539539
NSCursor* desired = bd->MouseCursors[imgui_cursor] ?: bd->MouseCursors[ImGuiMouseCursor_Arrow];
540-
// -[NSCursor set] generates measureable overhead if called unconditionally.
540+
// -[NSCursor set] generates measurable overhead if called unconditionally.
541541
if (desired != NSCursor.currentCursor)
542542
{
543543
[desired set];

backends/imgui_impl_sdlgpu3.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// - Introduction, links and more at the top of imgui.cpp
1818

1919
// Important note to the reader who wish to integrate imgui_impl_sdlgpu3.cpp/.h in their own engine/app.
20-
// - Unline other backends, the user must call the function Imgui_ImplSDLGPU_PrepareDrawData BEFORE issuing a SDL_GPURenderPass containing ImGui_ImplSDLGPU_RenderDrawData.
20+
// - Unlike other backends, the user must call the function Imgui_ImplSDLGPU_PrepareDrawData BEFORE issuing a SDL_GPURenderPass containing ImGui_ImplSDLGPU_RenderDrawData.
2121
// Calling the function is MANDATORY, otherwise the ImGui will not upload neither the vertex nor the index buffer for the GPU. See imgui_impl_sdlgpu3.cpp for more info.
2222

2323
#pragma once

docs/CHANGELOG.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v
633633

634634
Breaking changes:
635635

636-
- Internals: using multiple overlayed ButtonBehavior() with same ID will now have the
636+
- Internals: using multiple overlaid ButtonBehavior() with same ID will now have the
637637
io.ConfigDebugHighlightIdConflicts=true feature emit a warning. (#8030)
638638
It was one of the rare case where using same ID is legal. Workarounds:
639639
- use single ButtonBehavior() call with multiple _MouseButton flags

examples/libs/usynergy/uSynergy.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ typedef struct
336336
uSynergyJoystickCallback m_joystickCallback; /* Callback for joystick events */
337337
uSynergyClipboardCallback m_clipboardCallback; /* Callback for clipboard events */
338338

339-
/* State data, used internall by client, initialized by uSynergyInit() */
339+
/* State data, used internally by client, initialized by uSynergyInit() */
340340
uSynergyBool m_connected; /* Is our socket connected? */
341341
uSynergyBool m_hasReceivedHello; /* Have we received a 'Hello' from the server? */
342342
uSynergyBool m_isCaptured; /* Is Synergy active (i.e. this client is receiving input messages?) */

imgui.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ CODE
477477
- 2024/10/03 (1.91.3) - drags: treat v_min==v_max as a valid clamping range when != 0.0f. Zero is a still special value due to legacy reasons, unless using ImGuiSliderFlags_ClampZeroRange. (#7968, #3361, #76)
478478
- drags: extended behavior of ImGuiSliderFlags_AlwaysClamp to include _ClampZeroRange. It considers v_min==v_max==0.0f as a valid clamping range (aka edits not allowed).
479479
although unlikely, it you wish to only clamp on text input but want v_min==v_max==0.0f to mean unclamped drags, you can use _ClampOnInput instead of _AlwaysClamp. (#7968, #3361, #76)
480-
- 2024/09/10 (1.91.2) - internals: using multiple overlayed ButtonBehavior() with same ID will now have io.ConfigDebugHighlightIdConflicts=true feature emit a warning. (#8030)
480+
- 2024/09/10 (1.91.2) - internals: using multiple overlaid ButtonBehavior() with same ID will now have io.ConfigDebugHighlightIdConflicts=true feature emit a warning. (#8030)
481481
it was one of the rare case where using same ID is legal. workarounds: (1) use single ButtonBehavior() call with multiple _MouseButton flags, or (2) surround the calls with PushItemFlag(ImGuiItemFlags_AllowDuplicateId, true); ... PopItemFlag()
482482
- 2024/08/23 (1.91.1) - renamed ImGuiChildFlags_Border to ImGuiChildFlags_Borders for consistency. kept inline redirection flag.
483483
- 2024/08/22 (1.91.1) - moved some functions from ImGuiIO to ImGuiPlatformIO structure:
@@ -667,7 +667,7 @@ CODE
667667
- 2022/01/10 (1.87) - inputs: reworked keyboard IO. Removed io.KeyMap[], io.KeysDown[] in favor of calling io.AddKeyEvent(), ImGui::IsKeyDown(). Removed GetKeyIndex(), now unnecessary. All IsKeyXXX() functions now take ImGuiKey values. All features are still functional until IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Read Changelog and Release Notes for details.
668668
- IsKeyPressed(MY_NATIVE_KEY_XXX) -> use IsKeyPressed(ImGuiKey_XXX)
669669
- IsKeyPressed(GetKeyIndex(ImGuiKey_XXX)) -> use IsKeyPressed(ImGuiKey_XXX)
670-
- Backend writing to io.KeyMap[],io.KeysDown[] -> backend should call io.AddKeyEvent() (+ call io.SetKeyEventNativeData() if you want legacy user code to stil function with legacy key codes).
670+
- Backend writing to io.KeyMap[],io.KeysDown[] -> backend should call io.AddKeyEvent() (+ call io.SetKeyEventNativeData() if you want legacy user code to still function with legacy key codes).
671671
- Backend writing to io.KeyCtrl, io.KeyShift.. -> backend should call io.AddKeyEvent() with ImGuiMod_XXX values. *IF YOU PULLED CODE BETWEEN 2021/01/10 and 2021/01/27: We used to have a io.AddKeyModsEvent() function which was now replaced by io.AddKeyEvent() with ImGuiMod_XXX values.*
672672
- one case won't work with backward compatibility: if your custom backend used ImGuiKey as mock native indices (e.g. "io.KeyMap[ImGuiKey_A] = ImGuiKey_A") because those values are now larger than the legacy KeyDown[] array. Will assert.
673673
- inputs: added ImGuiKey_ModCtrl/ImGuiKey_ModShift/ImGuiKey_ModAlt/ImGuiKey_ModSuper values to submit keyboard modifiers using io.AddKeyEvent(), instead of writing directly to io.KeyCtrl, io.KeyShift, io.KeyAlt, io.KeySuper.
@@ -876,7 +876,7 @@ CODE
876876
- renamed IsMouseHoveringAnyWindow() to IsAnyWindowHovered() for consistency. Kept inline redirection function (will obsolete).
877877
- renamed IsMouseHoveringWindow() to IsWindowRectHovered() for consistency. Kept inline redirection function (will obsolete).
878878
- 2017/08/20 (1.51) - renamed GetStyleColName() to GetStyleColorName() for consistency.
879-
- 2017/08/20 (1.51) - added PushStyleColor(ImGuiCol idx, ImU32 col) overload, which _might_ cause an "ambiguous call" compilation error if you are using ImColor() with implicit cast. Cast to ImU32 or ImVec4 explicily to fix.
879+
- 2017/08/20 (1.51) - added PushStyleColor(ImGuiCol idx, ImU32 col) overload, which _might_ cause an "ambiguous call" compilation error if you are using ImColor() with implicit cast. Cast to ImU32 or ImVec4 explicitly to fix.
880880
- 2017/08/15 (1.51) - marked the weird IMGUI_ONCE_UPON_A_FRAME helper macro as obsolete. prefer using the more explicit ImGuiOnceUponAFrame type.
881881
- 2017/08/15 (1.51) - changed parameter order for BeginPopupContextWindow() from (const char*,int buttons,bool also_over_items) to (const char*,int buttons,bool also_over_items). Note that most calls relied on default parameters completely.
882882
- 2017/08/13 (1.51) - renamed ImGuiCol_Column to ImGuiCol_Separator, ImGuiCol_ColumnHovered to ImGuiCol_SeparatorHovered, ImGuiCol_ColumnActive to ImGuiCol_SeparatorActive. Kept redirection enums (will obsolete).
@@ -1748,7 +1748,7 @@ void ImGuiIO::AddMouseButtonEvent(int mouse_button, bool down)
17481748
// On MacOS X: Convert Ctrl(Super)+Left click into Right-click: handle held button.
17491749
if (ConfigMacOSXBehaviors && mouse_button == 0 && MouseCtrlLeftAsRightClick)
17501750
{
1751-
// Order of both statements matterns: this event will still release mouse button 1
1751+
// Order of both statements matters: this event will still release mouse button 1
17521752
mouse_button = 1;
17531753
if (!down)
17541754
MouseCtrlLeftAsRightClick = false;
@@ -3637,7 +3637,7 @@ void ImGui::RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end
36373637

36383638
// Default clip_rect uses (pos_min,pos_max)
36393639
// Handle clipping on CPU immediately (vs typically let the GPU clip the triangles that are overlapping the clipping rectangle edges)
3640-
// FIXME-OPT: Since we have or calculate text_size we could coarse clip whole block immediately, especally for text above draw_list->DrawList.
3640+
// FIXME-OPT: Since we have or calculate text_size we could coarse clip whole block immediately, especially for text above draw_list->DrawList.
36413641
// Effectively as this is called from widget doing their own coarse clipping it's not very valuable presently. Next time function will take
36423642
// better advantage of the render function taking size into account for coarse clipping.
36433643
void ImGui::RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_display_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect)
@@ -5525,7 +5525,7 @@ static void InitViewportDrawData(ImGuiViewportP* viewport)
55255525
// - If the code here changes, may need to update code of functions like NextColumn() and PushColumnClipRect():
55265526
// some frequently called functions which to modify both channels and clipping simultaneously tend to use the
55275527
// more specialized SetWindowClipRectBeforeSetChannel() to avoid extraneous updates of underlying ImDrawCmds.
5528-
// - This is analoguous to PushFont()/PopFont() in the sense that are a mixing a global stack and a window stack,
5528+
// - This is analogous to PushFont()/PopFont() in the sense that are a mixing a global stack and a window stack,
55295529
// which in the case of ClipRect is not so problematic but tends to be more restrictive for fonts.
55305530
void ImGui::PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect)
55315531
{
@@ -5717,7 +5717,7 @@ void ImGui::EndFrame()
57175717
}
57185718

57195719
// Prepare the data for rendering so you can call GetDrawData()
5720-
// (As with anything within the ImGui:: namspace this doesn't touch your GPU or graphics API at all:
5720+
// (As with anything within the ImGui:: namespace this doesn't touch your GPU or graphics API at all:
57215721
// it is the role of the ImGui_ImplXXXX_RenderDrawData() function provided by the renderer backend)
57225722
void ImGui::Render()
57235723
{
@@ -7870,7 +7870,7 @@ void ImGui::SetCurrentFont(ImFont* font)
78707870
g.DrawListSharedData.FontScale = g.FontScale;
78717871
}
78727872

7873-
// Use ImDrawList::_SetTextureID(), making our shared g.FontStack[] authorative against window-local ImDrawList.
7873+
// Use ImDrawList::_SetTextureID(), making our shared g.FontStack[] authoritative against window-local ImDrawList.
78747874
// - Whereas ImDrawList::PushTextureID()/PopTextureID() is not to be used across Begin() calls.
78757875
// - Note that we don't propagate current texture id when e.g. Begin()-ing into a new window, we never really did...
78767876
// - Some code paths never really fully worked with multiple atlas textures.
@@ -11360,7 +11360,7 @@ bool ImGui::BeginTooltipEx(ImGuiTooltipFlags tooltip_flags, ImGuiWindowFlags ext
1136011360
// - offset visibility to increase visibility around mouse.
1136111361
// - never clamp within outer viewport boundary.
1136211362
// We call SetNextWindowPos() to enforce position and disable clamping.
11363-
// See FindBestWindowPosForPopup() for positionning logic of other tooltips (not drag and drop ones).
11363+
// See FindBestWindowPosForPopup() for positioning logic of other tooltips (not drag and drop ones).
1136411364
//ImVec2 tooltip_pos = g.IO.MousePos - g.ActiveIdClickOffset - g.Style.WindowPadding;
1136511365
const bool is_touchscreen = (g.IO.MouseSource == ImGuiMouseSource_TouchScreen);
1136611366
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasPos) == 0)

imgui.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ namespace ImGui
696696
// - This is essentially a thin wrapper to using BeginChild/EndChild with the ImGuiChildFlags_FrameStyle flag for stylistic changes + displaying a label.
697697
// - If you don't need a label you can probably simply use BeginChild() with the ImGuiChildFlags_FrameStyle flag for the same result.
698698
// - You can submit contents and manage your selection state however you want it, by creating e.g. Selectable() or any other items.
699-
// - The simplified/old ListBox() api are helpers over BeginListBox()/EndListBox() which are kept available for convenience purpose. This is analoguous to how Combos are created.
699+
// - The simplified/old ListBox() api are helpers over BeginListBox()/EndListBox() which are kept available for convenience purpose. This is analogous to how Combos are created.
700700
// - Choose frame width: size.x > 0.0f: custom / size.x < 0.0f or -FLT_MIN: right-align / size.x = 0.0f (default): use current ItemWidth
701701
// - Choose frame height: size.y > 0.0f: custom / size.y < 0.0f or -FLT_MIN: bottom-align / size.y = 0.0f (default): arbitrary default height which can fit ~7 items
702702
IMGUI_API bool BeginListBox(const char* label, const ImVec2& size = ImVec2(0, 0)); // open a framed scrolling region
@@ -1022,7 +1022,7 @@ namespace ImGui
10221022
IMGUI_API void ResetMouseDragDelta(ImGuiMouseButton button = 0); //
10231023
IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired mouse cursor shape. Important: reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you
10241024
IMGUI_API void SetMouseCursor(ImGuiMouseCursor cursor_type); // set desired mouse cursor shape
1025-
IMGUI_API void SetNextFrameWantCaptureMouse(bool want_capture_mouse); // Override io.WantCaptureMouse flag next frame (said flag is left for your application to handle, typical when true it instucts your app to ignore inputs). This is equivalent to setting "io.WantCaptureMouse = want_capture_mouse;" after the next NewFrame() call.
1025+
IMGUI_API void SetNextFrameWantCaptureMouse(bool want_capture_mouse); // Override io.WantCaptureMouse flag next frame (said flag is left for your application to handle, typical when true it instructs your app to ignore inputs). This is equivalent to setting "io.WantCaptureMouse = want_capture_mouse;" after the next NewFrame() call.
10261026

10271027
// Clipboard Utilities
10281028
// - Also see the LogToClipboard() function to capture GUI into clipboard, or easily output text data to the clipboard.

imgui_demo.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -2388,7 +2388,7 @@ static const char* ExampleNames[] =
23882388
struct ExampleSelectionWithDeletion : ImGuiSelectionBasicStorage
23892389
{
23902390
// Find which item should be Focused after deletion.
2391-
// Call _before_ item submission. Retunr an index in the before-deletion item list, your item loop should call SetKeyboardFocusHere() on it.
2391+
// Call _before_ item submission. Return an index in the before-deletion item list, your item loop should call SetKeyboardFocusHere() on it.
23922392
// The subsequent ApplyDeletionPostLoop() code will use it to apply Selection.
23932393
// - We cannot provide this logic in core Dear ImGui because we don't have access to selection data.
23942394
// - We don't actually manipulate the ImVector<> here, only in ApplyDeletionPostLoop(), but using similar API for consistency and flexibility.
@@ -5399,7 +5399,7 @@ struct MyItem
53995399
return (sort_spec->SortDirection == ImGuiSortDirection_Ascending) ? -1 : +1;
54005400
}
54015401

5402-
// qsort() is instable so always return a way to differenciate items.
5402+
// qsort() is instable so always return a way to differentiate items.
54035403
// Your own compare function may want to avoid fallback on implicit sort specs.
54045404
// e.g. a Name compare if it wasn't already part of the sort specs.
54055405
return (a->ID - b->ID);
@@ -7762,7 +7762,7 @@ static void DemoWindowInputs()
77627762
ImGui::Text("IsWindowFocused: %d, Shortcut: %s", ImGui::IsWindowFocused(), ImGui::Shortcut(key_chord, flags) ? "PRESSED" : "...");
77637763

77647764
// 2: InputText also polling for CTRL+A: it always uses _RouteFocused internally (gets priority when active)
7765-
// (Commmented because the owner-aware version of Shortcut() is still in imgui_internal.h)
7765+
// (Commented because the owner-aware version of Shortcut() is still in imgui_internal.h)
77667766
//char str[16] = "Press CTRL+A";
77677767
//ImGui::Spacing();
77687768
//ImGui::InputText("InputTextB", str, IM_ARRAYSIZE(str), ImGuiInputTextFlags_ReadOnly);
@@ -7789,7 +7789,7 @@ static void DemoWindowInputs()
77897789
{
77907790
ImGui::Text("(in PopupF)");
77917791
ImGui::Text("IsWindowFocused: %d, Shortcut: %s", ImGui::IsWindowFocused(), ImGui::Shortcut(key_chord, flags) ? "PRESSED" : "...");
7792-
// (Commmented because the owner-aware version of Shortcut() is still in imgui_internal.h)
7792+
// (Commented because the owner-aware version of Shortcut() is still in imgui_internal.h)
77937793
//ImGui::InputText("InputTextG", str, IM_ARRAYSIZE(str), ImGuiInputTextFlags_ReadOnly);
77947794
//ImGui::Text("IsWindowFocused: %d, Shortcut: %s", ImGui::IsWindowFocused(), ImGui::Shortcut(key_chord, flags, ImGui::GetItemID()) ? "PRESSED" : "...");
77957795
ImGui::EndPopup();
@@ -10368,7 +10368,7 @@ struct ExampleAssetsBrowser
1036810368
Selection.Clear();
1036910369
}
1037010370

10371-
// Logic would be written in the main code BeginChild() and outputing to local variables.
10371+
// Logic would be written in the main code BeginChild() and outputting to local variables.
1037210372
// We extracted it into a function so we can call it easily from multiple places.
1037310373
void UpdateLayoutSizes(float avail_width)
1037410374
{

imgui_draw.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ void ImDrawList::AddPolyline(const ImVec2* points, const int points_count, ImU32
856856
dm_x *= half_draw_size; // dm_x, dm_y are offset to the outer edge of the AA area
857857
dm_y *= half_draw_size;
858858

859-
// Add temporary vertexes for the outer edges
859+
// Add temporary vertices for the outer edges
860860
ImVec2* out_vtx = &temp_points[i2 * 2];
861861
out_vtx[0].x = points[i2].x + dm_x;
862862
out_vtx[0].y = points[i2].y + dm_y;
@@ -883,7 +883,7 @@ void ImDrawList::AddPolyline(const ImVec2* points, const int points_count, ImU32
883883
idx1 = idx2;
884884
}
885885

886-
// Add vertexes for each point on the line
886+
// Add vertices for each point on the line
887887
if (use_texture)
888888
{
889889
// If we're using textures we only need to emit the left/right edge vertices

0 commit comments

Comments
 (0)