summaryrefslogtreecommitdiff
path: root/framework/source/helper
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-09-29 17:53:53 +0200
committerOliver Specht <oliver.specht@cib.de>2015-09-30 12:39:01 +0000
commiteab0904f0edda70334532b5cbf466717966f5db0 (patch)
tree7fb546283220ae41fda1173c49f48999b40ba67c /framework/source/helper
parentf891d8cf6bb6f2db1b72cba64036b5f1fb858309 (diff)
Fix typos
Change-Id: I81f6f356c1a6873fcc9a3bde487127b673fa9a61 Reviewed-on: https://gerrit.libreoffice.org/18952 Reviewed-by: Oliver Specht <oliver.specht@cib.de> Tested-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'framework/source/helper')
-rw-r--r--framework/source/helper/oframes.cxx2
-rw-r--r--framework/source/helper/persistentwindowstate.cxx2
-rw-r--r--framework/source/helper/statusindicatorfactory.cxx10
3 files changed, 7 insertions, 7 deletions
diff --git a/framework/source/helper/oframes.cxx b/framework/source/helper/oframes.cxx
index 18f92f83a3e5..224d1558c6bb 100644
--- a/framework/source/helper/oframes.cxx
+++ b/framework/source/helper/oframes.cxx
@@ -196,7 +196,7 @@ Sequence< css::uno::Reference< XFrame > > SAL_CALL OFrames::queryFrames( sal_Int
// Else; Do nothing! Our owner is dead.
SAL_WARN_IF( !xOwner.is(), "fwk", "OFrames::queryFrames(): Our owner is dead - you can't query for frames ...!" );
- // Resturn result of this operation.
+ // Return result of this operation.
return seqFrames;
}
diff --git a/framework/source/helper/persistentwindowstate.cxx b/framework/source/helper/persistentwindowstate.cxx
index 565aaabaf7ed..afef67bfbbe1 100644
--- a/framework/source/helper/persistentwindowstate.cxx
+++ b/framework/source/helper/persistentwindowstate.cxx
@@ -275,7 +275,7 @@ void PersistentWindowState::implst_setWindowStateOnWindow(const css::uno::Refere
SystemWindow* pSystemWindow = static_cast<SystemWindow*>(pWindow);
WorkWindow* pWorkWindow = static_cast<WorkWindow* >(pWindow);
- // dont save this special state!
+ // don't save this special state!
if (pWorkWindow->IsMinimized())
return;
diff --git a/framework/source/helper/statusindicatorfactory.cxx b/framework/source/helper/statusindicatorfactory.cxx
index 44e88f0bab4a..4b902cda0398 100644
--- a/framework/source/helper/statusindicatorfactory.cxx
+++ b/framework/source/helper/statusindicatorfactory.cxx
@@ -165,8 +165,8 @@ void StatusIndicatorFactory::reset(const css::uno::Reference< css::task::XStatus
aReadLock.clear();
// <- SAFE ----------------------------------
- // not the top most child => dont change UI
- // But dont forget Reschedule!
+ // not the top most child => don't change UI
+ // But don't forget Reschedule!
if (
(xChild == xActive) &&
(xProgress.is() )
@@ -246,7 +246,7 @@ void StatusIndicatorFactory::setText(const css::uno::Reference< css::task::XStat
// SAFE -> ----------------------------------
// paint only the top most indicator
- // but dont forget to Reschedule!
+ // but don't forget to Reschedule!
if (
(xChild == xActive) &&
(xProgress.is() )
@@ -311,7 +311,7 @@ void StatusIndicatorFactory::implts_makeParentVisibleIfAllowed()
else
xParentWindow = xPluggWindow;
- // dont disturb user in case he put the loading document into the background!
+ // don't disturb user in case he put the loading document into the background!
// Suppress any setVisible() or toFront() call in case the initial show was
// already made.
css::uno::Reference< css::awt::XWindow2 > xVisibleCheck(xParentWindow, css::uno::UNO_QUERY);
@@ -344,7 +344,7 @@ void StatusIndicatorFactory::implts_makeParentVisibleIfAllowed()
// We need a Hack for our applications: They get her progress from the frame directly
// on saving documents. Because there is no progress set on the MediaDescriptor.
// But that's wrong. In case the document was opened hidden, they should not use any progress .-(
- // They only possible workaround: dont show the parent window here, if the document was opened hidden.
+ // They only possible workaround: don't show the parent window here, if the document was opened hidden.
bool bHiddenDoc = false;
if (xFrame.is())
{