summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2024-12-18 20:47:02 +0100
committerJulien Nabet <serval2412@yahoo.fr>2024-12-19 09:37:09 +0100
commit29f0304fc77206ac03132d2c6a8015b83de11f6a (patch)
tree73c6b565ded936be85d80fe146c4b148bb03f7bd
parent538cb629d0fc01ca9efb82d9ae86af4f32dc5081 (diff)
Fix typos
Change-Id: I6b0c8e56632b56c570cac660b878687bb02d25e6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178742 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--svtools/source/config/colorcfg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/config/colorcfg.cxx b/svtools/source/config/colorcfg.cxx
index 154862518676..6787c43b8fa8 100644
--- a/svtools/source/config/colorcfg.cxx
+++ b/svtools/source/config/colorcfg.cxx
@@ -106,7 +106,7 @@ namespace {
uno::Sequence< OUString> GetPropertyNames(std::u16string_view rScheme)
{
- // this assums that all the entries will have at max 3 properties. this
+ // this assumes that all the entries will have at max 3 properties. this
// might not be the case as more and more UI elements support the bitmap
// background property. If that happens we might want to increase it to
// 5 * ColorConfigEntryCount; shouldn't be a problem now
@@ -217,7 +217,7 @@ void ColorConfig_Impl::Load(const OUString& rScheme)
|| (MiscSettings::GetAppColorMode() == 0 && MiscSettings::GetUseDarkMode());
// based on the appearance (light/dark) cache the value of the appropriate color in nColor.
- // this way we don't have to add hunderds of function calls in the codebase and it will be fast.
+ // this way we don't have to add hundreds of function calls in the codebase and it will be fast.
if (bIsDarkMode)
m_aConfigValues[i].nColor = m_aConfigValues[i].nDarkColor;
else