diff options
-rw-r--r-- | vcl/unx/gtk3/gtkinst.cxx | 2 | ||||
-rw-r--r-- | vcl/win/gdi/winlayout.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx index 8e3e32b32e56..73503ac1af4c 100644 --- a/vcl/unx/gtk3/gtkinst.cxx +++ b/vcl/unx/gtk3/gtkinst.cxx @@ -15633,7 +15633,7 @@ private: { m_aQuickSelectionEngine.Reset(); sal_uInt16 nKeyMod = aKeyCode.GetModifier(); - // tdf#131076 don't let bare return toggle menu popup active, but do allow deactive + // tdf#131076 don't let bare return toggle menu popup active, but do allow deactivate if (nCode == KEY_RETURN && !nKeyMod && !m_bPopupActive) bDone = combobox_activate(); else if (nCode == KEY_UP && nKeyMod == KEY_MOD2 && m_bPopupActive) diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx index 927694f8b450..9c82ba88a279 100644 --- a/vcl/win/gdi/winlayout.cxx +++ b/vcl/win/gdi/winlayout.cxx @@ -281,7 +281,7 @@ void WinSalGraphics::DrawTextLayout(const GenericSalLayout& rLayout) const HFONT hOrigFont = ::SelectFont(hDC, hLayoutFont); - // There isnt' a way for Win32 API ExtTextOutW to render vertical-writing glyphs correctly, + // There isn't a way for Win32 API ExtTextOutW to render vertical-writing glyphs correctly, // so let's use DWrite text renderer in this case. DrawTextLayout(rLayout, hDC, rLayout.GetFont().GetFontSelectPattern().mbVertical); |