[Libreoffice-commits] core.git: Branch 'aoo/trunk' - vcl/source
Matthias Seidel
mseidel at apache.org
Sat Jun 2 12:09:37 UTC 2018
vcl/source/app/settings.cxx | 2 +-
vcl/source/window/toolbox2.cxx | 4 ++--
vcl/source/window/window.cxx | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 48f33ea9fa4084841e0ac6197f18b2be9dc0c05c
Author: Matthias Seidel <mseidel at apache.org>
Date: Sat Jun 2 11:22:39 2018 +0000
Fixed typos:
sensisitive -> sensitive
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx
index 7e0d7a461fb9..e394e7e6e8ac 100644
--- a/vcl/source/app/settings.cxx
+++ b/vcl/source/app/settings.cxx
@@ -1898,7 +1898,7 @@ sal_Bool AllSettings::GetLayoutRTL() const
nUIMirroring = 0; // ask configuration only once
utl::OConfigurationNode aNode = utl::OConfigurationTreeRoot::tryCreateWithServiceFactory(
vcl::unohelper::GetMultiServiceFactory(),
- OUString::createFromAscii( "org.openoffice.Office.Common/I18N/CTL" ) ); // note: case sensisitive !
+ OUString::createFromAscii( "org.openoffice.Office.Common/I18N/CTL" ) ); // note: case sensitive !
if ( aNode.isValid() )
{
sal_Bool bTmp = sal_Bool();
diff --git a/vcl/source/window/toolbox2.cxx b/vcl/source/window/toolbox2.cxx
index 424b8d047a6b..72821d3ad0f9 100644
--- a/vcl/source/window/toolbox2.cxx
+++ b/vcl/source/window/toolbox2.cxx
@@ -2367,7 +2367,7 @@ sal_Bool ToolBox::AlwaysLocked()
utl::OConfigurationNode aNode = utl::OConfigurationTreeRoot::tryCreateWithServiceFactory(
vcl::unohelper::GetMultiServiceFactory(),
- OUString::createFromAscii( "/org.openoffice.Office.UI.GlobalSettings/Toolbars" ) ); // note: case sensisitive !
+ OUString::createFromAscii( "/org.openoffice.Office.UI.GlobalSettings/Toolbars" ) ); // note: case sensitive !
if ( aNode.isValid() )
{
// feature enabled ?
@@ -2380,7 +2380,7 @@ sal_Bool ToolBox::AlwaysLocked()
// now read the locking state
utl::OConfigurationNode aNode2 = utl::OConfigurationTreeRoot::tryCreateWithServiceFactory(
vcl::unohelper::GetMultiServiceFactory(),
- OUString::createFromAscii( "/org.openoffice.Office.UI.GlobalSettings/Toolbars/States" ) ); // note: case sensisitive !
+ OUString::createFromAscii( "/org.openoffice.Office.UI.GlobalSettings/Toolbars/States" ) ); // note: case sensitive !
sal_Bool bLocked = sal_Bool();
::com::sun::star::uno::Any aValue2 = aNode2.getNodeValue( OUString::createFromAscii( "Locked" ) );
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 7269794766d8..9ca096e8f6fb 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -630,7 +630,7 @@ void Window::ImplUpdateGlobalSettings( AllSettings& rSettings, sal_Bool bCallHdl
sal_Bool bTmp = sal_False, bAutoHCMode = sal_True;
utl::OConfigurationNode aNode = utl::OConfigurationTreeRoot::tryCreateWithServiceFactory(
vcl::unohelper::GetMultiServiceFactory(),
- OUString::createFromAscii( "org.openoffice.Office.Common/Accessibility" ) ); // note: case sensisitive !
+ OUString::createFromAscii( "org.openoffice.Office.Common/Accessibility" ) ); // note: case sensitive !
if ( aNode.isValid() )
{
::com::sun::star::uno::Any aValue = aNode.getNodeValue( OUString::createFromAscii( "AutoDetectSystemHC" ) );
More information about the Libreoffice-commits
mailing list