diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2016-10-01 13:08:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-03 11:21:52 +0000 |
commit | f0249a88fc502df142d36f2f67c976618b7ba6b6 (patch) | |
tree | fe9433455da9763f82484cf86c0d1d1f95d84acc /framework | |
parent | 8f62ca8e2f33a63b62dd7c39b8e002b03d6c4d95 (diff) |
Fix typos
Change-Id: I6730c6c5eab9157533822e5045e9f86109062580
Reviewed-on: https://gerrit.libreoffice.org/29433
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/classes/taskcreator.hxx | 2 | ||||
-rw-r--r-- | framework/inc/dispatch/interceptionhelper.hxx | 2 | ||||
-rw-r--r-- | framework/inc/helper/ocomponentenumeration.hxx | 4 | ||||
-rw-r--r-- | framework/inc/helper/oframes.hxx | 2 | ||||
-rw-r--r-- | framework/inc/services/desktop.hxx | 4 | ||||
-rw-r--r-- | framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java | 2 | ||||
-rw-r--r-- | framework/source/accelerators/keymapping.cxx | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/framework/inc/classes/taskcreator.hxx b/framework/inc/classes/taskcreator.hxx index 295fb21667c2..9bca42869e53 100644 --- a/framework/inc/classes/taskcreator.hxx +++ b/framework/inc/classes/taskcreator.hxx @@ -32,7 +32,7 @@ namespace framework{ /*-************************************************************************************************************ @short a helper to create new tasks or sub frames for "_blank" or FrameSearchFlag::CREATE - @descr There are different places to create new (task)frames. Its not easy to service this code! + @descr There are different places to create new (task)frames. It's not easy to service this code! Thats the reason for this helper. He capsulate asynchronous/synchronous creation by calling a simple interface. diff --git a/framework/inc/dispatch/interceptionhelper.hxx b/framework/inc/dispatch/interceptionhelper.hxx index 7c6e55505071..7462303abb1f 100644 --- a/framework/inc/dispatch/interceptionhelper.hxx +++ b/framework/inc/dispatch/interceptionhelper.hxx @@ -162,7 +162,7 @@ class InterceptionHelper : public ::cppu::WeakImplHelper< /** @short standard destructor. @descr This method destruct an instance of this class and clear some member. - This method is protected, because its not allowed to use this class as a direct member! + This method is protected, because it's not allowed to use this class as a direct member! You MUST use a dynamical instance (pointer). That's the reason for a protected dtor. */ virtual ~InterceptionHelper() override; diff --git a/framework/inc/helper/ocomponentenumeration.hxx b/framework/inc/helper/ocomponentenumeration.hxx index a055d88f8c68..e833f4d211b7 100644 --- a/framework/inc/helper/ocomponentenumeration.hxx +++ b/framework/inc/helper/ocomponentenumeration.hxx @@ -35,7 +35,7 @@ namespace framework{ /*-************************************************************************************************************ @short implement a helper for a oneway enumeration of components - @descr You can step during this list only for one time! Its a snapshot. + @descr You can step during this list only for one time! It's a snapshot. Don't forget to release the reference. You are the owner of an instance of this implementation. You can't use this as a baseclass. Please use it as a dynamical object for return. @@ -121,7 +121,7 @@ class OComponentEnumeration : public ::cppu::WeakImplHelper< css::container::X /*-**************************************************************************************************** @short standard destructor @descr This method destruct an instance of this class and clear some member. - We make it protected, because its not supported to use this class as normal instance! + We make it protected, because it's not supported to use this class as normal instance! You must create it dynamical in memory and use a pointer. *//*-*****************************************************************************************************/ diff --git a/framework/inc/helper/oframes.hxx b/framework/inc/helper/oframes.hxx index 3eae713bf941..2b35afe52735 100644 --- a/framework/inc/helper/oframes.hxx +++ b/framework/inc/helper/oframes.hxx @@ -162,7 +162,7 @@ class OFrames : public ::cppu::WeakImplHelper< css::frame::XFrames > /*-**************************************************************************************************** @short standard destructor @descr This method destruct an instance of this class and clear some member. - This method is protected, because its not allowed to use this class as a member! + This method is protected, because it's not allowed to use this class as a member! You MUST use a dynamical instance (pointer). That's the reason for a protected dtor. *//*-*****************************************************************************************************/ virtual ~OFrames() override; diff --git a/framework/inc/services/desktop.hxx b/framework/inc/services/desktop.hxx index 4c9f19c3d1f0..8e90ba671ebf 100644 --- a/framework/inc/services/desktop.hxx +++ b/framework/inc/services/desktop.hxx @@ -177,7 +177,7 @@ class Desktop : private cppu::BaseMutex, @descr Additional to adding normal listener these method was implemented special. Every listener will be asked for its uno implementation name. - Some of them are well known... and the corresponding listener wont be added + Some of them are well known... and the corresponding listener won't be added to the container of "normal listener". Those listener will be set as special member. see e.g. member m_xSfxTerminator @@ -432,7 +432,7 @@ class Desktop : private cppu::BaseMutex, * Because basic runs Application::Yield internally the application may quit * while running inside the internal basic event loop. So all the basic * infrastructure may be deleted while the call is executing, leading to - * a varient of crashes. So this special terminate listener will + * a variant of crashes. So this special terminate listener will * veto the current quit attempt, stop basic execution, which will * cause the inner event loop to quit, and on return to the outer normal * application event loop then resend the quit attempt. diff --git a/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java b/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java index dc7e288093ba..c6bd94afa8bb 100644 --- a/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java +++ b/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java @@ -212,7 +212,7 @@ public class CheckXComponentLoader String sURL = URLHelper.getFileURLFromSystemPath(aSysFile); loadURL(m_xLoader, RESULT_VALID_DOC, sURL, "_blank", 0, lProps); - // Its not needed to reset this using states! + // It's not needed to reset this using states! // Its done internally ... if (!xIndicator.wasUsed()) { diff --git a/framework/source/accelerators/keymapping.cxx b/framework/source/accelerators/keymapping.cxx index 02a0278b654f..c2fbcb53431c 100644 --- a/framework/source/accelerators/keymapping.cxx +++ b/framework/source/accelerators/keymapping.cxx @@ -170,7 +170,7 @@ sal_uInt16 KeyMapping::mapIdentifierToCode(const OUString& sIdentifier) if (pIt != m_lIdentifierHash.end()) return pIt->second; - // Its not well known identifier - but may be a pure key code formatted as string ... + // It's not well known identifier - but may be a pure key code formatted as string... // Check and convert it! sal_uInt16 nCode = 0; if (!KeyMapping::impl_st_interpretIdentifierAsPureKeyCode(sIdentifier, nCode)) |