summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-06-10 16:56:25 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-06-14 07:36:11 +0200
commitf3559bd58efff190a7b3d02445b75d2bd04a47c1 (patch)
tree38d2e6719c3696257803814f2e875f91e73f5cc6
parent21c5ef43ee51b4c9f4181b59a8926a48ea35e651 (diff)
Fix typo
Change-Id: I97b448c65c68df81d195c9790eb13d7bd6bd79a0 Reviewed-on: https://gerrit.libreoffice.org/74005 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--framework/source/accelerators/acceleratorconfiguration.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/source/accelerators/acceleratorconfiguration.cxx b/framework/source/accelerators/acceleratorconfiguration.cxx
index f828aaa34dbb..9d68e124d13c 100644
--- a/framework/source/accelerators/acceleratorconfiguration.cxx
+++ b/framework/source/accelerators/acceleratorconfiguration.cxx
@@ -67,7 +67,7 @@ namespace framework
static OUString lcl_getKeyString(const css::awt::KeyEvent& aKeyEvent)
{
- const sal_Int32 nBeginIndex = 4; // "KEY_" is the prefix of a identifier...
+ const sal_Int32 nBeginIndex = 4; // "KEY_" is the prefix of an identifier...
OUStringBuffer sKeyBuffer((KeyMapping::get().mapCodeToIdentifier(aKeyEvent.KeyCode)).copy(nBeginIndex));
if ( (aKeyEvent.Modifiers & css::awt::KeyModifier::SHIFT) == css::awt::KeyModifier::SHIFT )
@@ -459,7 +459,7 @@ AcceleratorCache& XMLBasedAcceleratorConfiguration::impl_getCFG(bool bWriteAcces
}
// in case, we have a writeable cache, we use it for reading too!
- // Otherwise the API user can't find its own changes ...
+ // Otherwise the API user can't find its own changes...
if (m_pWriteCache)
return *m_pWriteCache;
else
@@ -1296,7 +1296,7 @@ AcceleratorCache& XCUBasedAcceleratorConfiguration::impl_getCFG(bool bPreferred,
}
// in case, we have a writeable cache, we use it for reading too!
- // Otherwise the API user can't find its own changes ...
+ // Otherwise the API user can't find its own changes...
if (m_pPrimaryWriteCache)
return *m_pPrimaryWriteCache;
else
@@ -1313,7 +1313,7 @@ AcceleratorCache& XCUBasedAcceleratorConfiguration::impl_getCFG(bool bPreferred,
}
// in case, we have a writeable cache, we use it for reading too!
- // Otherwise the API user can't find its own changes ...
+ // Otherwise the API user can't find its own changes...
if (m_pSecondaryWriteCache)
return *m_pSecondaryWriteCache;
else