summaryrefslogtreecommitdiff
path: root/framework/source/dispatch/dispatchprovider.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-09-10 22:35:39 +0200
committerJulien Nabet <serval2412@yahoo.fr>2014-09-10 22:35:39 +0200
commit037d03b9facb414ba6be01fa6ee92fc7ca89f70c (patch)
tree119676e8107fada1b91ef12a72e9bbf7b393729f /framework/source/dispatch/dispatchprovider.cxx
parent44ead04eb5fc61a3f56f783adb1509fab440e212 (diff)
Typo: (N|n)ormaly->(N|n)ormally
Change-Id: I96d081f394b0b62d99ec1034bf5e99da9aedd9d9
Diffstat (limited to 'framework/source/dispatch/dispatchprovider.cxx')
-rw-r--r--framework/source/dispatch/dispatchprovider.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/source/dispatch/dispatchprovider.cxx b/framework/source/dispatch/dispatchprovider.cxx
index 5de428aa53b5..e46d6fb2c47d 100644
--- a/framework/source/dispatch/dispatchprovider.cxx
+++ b/framework/source/dispatch/dispatchprovider.cxx
@@ -181,7 +181,7 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryDeskt
// I.I) "_blank"
// It's not the right place to create a new task here - because we are queried for a dispatch object
// only, which can handle such request. Such dispatcher should create the required task on demand.
- // Normaly the functionality for "_blank" is provided by findFrame() - but that would create it directly
+ // Normally the functionality for "_blank" is provided by findFrame() - but that would create it directly
// here. Thats why we must "intercept" here.
if (sTargetFrameName==SPECIALTARGET_BLANK)
@@ -204,7 +204,7 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryDeskt
// I.III) "_self", "", "_top"
// The desktop can't load any document - but he can handle some special protocols like "uno", "slot" ...
- // Why is "top" here handled too? Because the desktop is the topest frame. Normaly it's superflous
+ // Why is "top" here handled too? Because the desktop is the topest frame. Normally it's superflous
// to use this target - but we can handle it in the same manner then "_self".
else if (
@@ -258,7 +258,7 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryFrame
// I.I) "_blank", "_default"
// It's not the right place to create a new task here. Only the desktop can do that.
- // Normaly the functionality for "_blank" is provided by findFrame() - but that would create it directly
+ // Normally the functionality for "_blank" is provided by findFrame() - but that would create it directly
// here. Thats why we must "intercept" here.
if (
@@ -327,7 +327,7 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryFrame
else
{
css::uno::Reference< css::frame::XDispatchProvider > xParent( xFrame->getCreator(), css::uno::UNO_QUERY );
- // Normaly if isTop() returned sal_False ... the parent frame MUST(!) exist ...
+ // Normally if isTop() returned sal_False ... the parent frame MUST(!) exist ...
// But it seems to be better to check that here to prevent us against an access violation.
if (xParent.is())
xDispatcher = xParent->queryDispatch(aURL, SPECIALTARGET_TOP, 0);