Author: mseidel
Date: Sat Jun 2 11:22:39 2018
New Revision: 1832730
URL: http://svn.apache.org/viewvc?rev=1832730&view=rev
Log:
Fixed typos:
sensisitive -> sensitive
Modified:
openoffice/trunk/main/vcl/source/app/settings.cxx
openoffice/trunk/main/vcl/source/window/toolbox2.cxx
openoffice/trunk/main/vcl/source/window/window.cxx
Modified: openoffice/trunk/main/vcl/source/app/settings.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/source/app/settings.cxx?rev=1832730&r1=1832729&r2=1832730&view=diff
==============================================================================
--- openoffice/trunk/main/vcl/source/app/settings.cxx (original)
+++ openoffice/trunk/main/vcl/source/app/settings.cxx Sat Jun 2 11:22:39 2018
@@ -1898,7 +1898,7 @@ sal_Bool AllSettings::GetLayoutRTL() con
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();
Modified: openoffice/trunk/main/vcl/source/window/toolbox2.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/source/window/toolbox2.cxx?rev=1832730&r1=1832729&r2=1832730&view=diff
==============================================================================
--- openoffice/trunk/main/vcl/source/window/toolbox2.cxx (original)
+++ openoffice/trunk/main/vcl/source/window/toolbox2.cxx Sat Jun 2 11:22:39 2018
@@ -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" ) );
Modified: openoffice/trunk/main/vcl/source/window/window.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/source/window/window.cxx?rev=1832730&r1=1832729&r2=1832730&view=diff
==============================================================================
--- openoffice/trunk/main/vcl/source/window/window.cxx (original)
+++ openoffice/trunk/main/vcl/source/window/window.cxx Sat Jun 2 11:22:39 2018
@@ -630,7 +630,7 @@ void Window::ImplUpdateGlobalSettings( A
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" ) );
|