summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-02-06 14:46:00 +0200
committerTor Lillqvist <tml@collabora.com>2017-02-06 16:03:34 +0200
commite1e4efdc71d00ab2255b311cd420f929384ebbfa (patch)
tree79da006b755c700346d50835490915e81da4ed3b /framework
parent5c54971cbc4672fc7bb3a2fb26bb6eda229a7fa8 (diff)
Typo: s/dependend/dependent/i
Change-Id: If02798894ad6f0e0442ed60aaec6eca40e6dcb61
Diffstat (limited to 'framework')
-rw-r--r--framework/source/jobs/helponstartup.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/jobs/helponstartup.cxx b/framework/source/jobs/helponstartup.cxx
index 6a0cc10d1969..9996c85f4651 100644
--- a/framework/source/jobs/helponstartup.cxx
+++ b/framework/source/jobs/helponstartup.cxx
@@ -132,14 +132,14 @@ css::uno::Any SAL_CALL HelpOnStartup::execute(const css::uno::Sequence< css::bea
if (bShowIt)
{
// retrieve the help URL for the detected application module
- OUString sModuleDependendHelpURL = its_checkIfHelpEnabledAndGetURL(sModule);
- if (!sModuleDependendHelpURL.isEmpty())
+ OUString sModuleDependentHelpURL = its_checkIfHelpEnabledAndGetURL(sModule);
+ if (!sModuleDependentHelpURL.isEmpty())
{
// Show this help page.
// Note: The help window brings itself to front ...
Help* pHelp = Application::GetHelp();
if (pHelp)
- pHelp->Start(sModuleDependendHelpURL, nullptr);
+ pHelp->Start(sModuleDependentHelpURL, nullptr);
}
}