diff options
author | Jan Holesovsky <kendy@suse.cz> | 2012-08-23 08:08:38 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2012-08-23 17:54:00 +0200 |
commit | 1a3f44e52b31c520d52261af8a2f92b88e107459 (patch) | |
tree | b08eea2a354b53d12311f985b93720906c107fb5 /vcl | |
parent | 35c9ffb2750178b558c71af12240cd5809a0314e (diff) |
Fix typo in a comment (copied here and there).
Change-Id: Ic3c3e71a79ea8bf73a51fc7f001833d6ccedcb76
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/settings.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/toolbox2.cxx | 4 | ||||
-rw-r--r-- | vcl/source/window/window.cxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx index aa6064f2e10d..421b65df383a 100644 --- a/vcl/source/app/settings.cxx +++ b/vcl/source/app/settings.cxx @@ -1508,7 +1508,7 @@ bool AllSettings::GetLayoutRTL() const nUIMirroring = 0; // ask configuration only once utl::OConfigurationNode aNode = utl::OConfigurationTreeRoot::tryCreateWithServiceFactory( vcl::unohelper::GetMultiServiceFactory(), - OUString("org.openoffice.Office.Common/I18N/CTL") ); // note: case sensisitive ! + OUString("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 0a16c9d3d4e6..d7920cfe4ab7 100644 --- a/vcl/source/window/toolbox2.cxx +++ b/vcl/source/window/toolbox2.cxx @@ -2140,7 +2140,7 @@ sal_Bool ToolBox::AlwaysLocked() utl::OConfigurationNode aNode = utl::OConfigurationTreeRoot::tryCreateWithServiceFactory( vcl::unohelper::GetMultiServiceFactory(), - OUString("/org.openoffice.Office.UI.GlobalSettings/Toolbars") ); // note: case sensisitive ! + OUString("/org.openoffice.Office.UI.GlobalSettings/Toolbars") ); // note: case sensitive ! if ( aNode.isValid() ) { // feature enabled ? @@ -2153,7 +2153,7 @@ sal_Bool ToolBox::AlwaysLocked() // now read the locking state utl::OConfigurationNode aNode2 = utl::OConfigurationTreeRoot::tryCreateWithServiceFactory( vcl::unohelper::GetMultiServiceFactory(), - OUString("/org.openoffice.Office.UI.GlobalSettings/Toolbars/States") ); // note: case sensisitive ! + OUString("/org.openoffice.Office.UI.GlobalSettings/Toolbars/States") ); // note: case sensitive ! sal_Bool bLocked = sal_Bool(); ::com::sun::star::uno::Any aValue2 = aNode2.getNodeValue( OUString("Locked") ); diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index a39d8550d54c..73280fe1080f 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -486,7 +486,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("org.openoffice.Office.Common/Accessibility") ); // note: case sensisitive ! + OUString("org.openoffice.Office.Common/Accessibility") ); // note: case sensitive ! if ( aNode.isValid() ) { ::com::sun::star::uno::Any aValue = aNode.getNodeValue( OUString("AutoDetectSystemHC") ); |