summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 18:51:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-09-11 23:43:34 +0200
commit157420e496ddebd7101d88ba8d07164d3971ad22 (patch)
treeb126bef25094bdc494604025c7f240f1026f5633 /framework
parent6bddab1d2553defebf6b2ebdd80553413d364dd8 (diff)
Typos
Mainly fixing '..' and '....' Change-Id: Ied226ed148c571d278ae65b3f468bd329f557fa9 Reviewed-on: https://gerrit.libreoffice.org/78669 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/dispatch/closedispatcher.hxx2
-rw-r--r--framework/inc/helper/statusindicator.hxx2
-rw-r--r--framework/source/helper/ocomponentenumeration.cxx4
-rw-r--r--framework/source/helper/oframes.cxx4
-rw-r--r--framework/source/inc/loadenv/loadenvexception.hxx4
-rw-r--r--framework/source/services/frame.cxx4
-rw-r--r--framework/source/services/pathsettings.cxx2
7 files changed, 11 insertions, 11 deletions
diff --git a/framework/inc/dispatch/closedispatcher.hxx b/framework/inc/dispatch/closedispatcher.hxx
index d0ed8e8bbf87..aa75a3acdab6 100644
--- a/framework/inc/dispatch/closedispatcher.hxx
+++ b/framework/inc/dispatch/closedispatcher.hxx
@@ -191,7 +191,7 @@ class CloseDispatcher : public ::cppu::WeakImplHelper<
Otherwise e.g. the XController->suspend()
call is not made and no UI warn the user about
losing document changes. Because the
- frame is closed ....
+ frame is closed...
@return [bool]
sal_True if closing was successful.
diff --git a/framework/inc/helper/statusindicator.hxx b/framework/inc/helper/statusindicator.hxx
index baff80c4ab28..a97cfe952062 100644
--- a/framework/inc/helper/statusindicator.hxx
+++ b/framework/inc/helper/statusindicator.hxx
@@ -78,7 +78,7 @@ class StatusIndicator : public ::cppu::WeakImplHelper< css::task::XStatusIndica
*/
StatusIndicator(StatusIndicatorFactory* pFactory);
- /** @short does nothing real ....
+ /** @short does nothing real...
*/
virtual ~StatusIndicator() override;
diff --git a/framework/source/helper/ocomponentenumeration.cxx b/framework/source/helper/ocomponentenumeration.cxx
index 76622c93bb6b..2a06c558c3e4 100644
--- a/framework/source/helper/ocomponentenumeration.cxx
+++ b/framework/source/helper/ocomponentenumeration.cxx
@@ -41,7 +41,7 @@ OComponentEnumeration::OComponentEnumeration( const std::vector< css::uno::Refer
OComponentEnumeration::~OComponentEnumeration()
{
- // Reset instance, free memory ....
+ // Reset instance, free memory...
impl_resetObject();
}
@@ -100,7 +100,7 @@ void OComponentEnumeration::impl_resetObject()
// Attention:
// Write this for multiple calls - NOT AT THE SAME TIME - but for more than one call again)!
// It exist two ways to call this method. From destructor and from disposing().
- // I can't say, which one is the first. Normally the disposing-call - but other way ....
+ // I can't say, which one is the first. Normally the disposing-call - but other way...
// Delete list of components.
m_seqComponents.clear();
diff --git a/framework/source/helper/oframes.cxx b/framework/source/helper/oframes.cxx
index 5c9b06e1138a..048d5ad79b54 100644
--- a/framework/source/helper/oframes.cxx
+++ b/framework/source/helper/oframes.cxx
@@ -52,7 +52,7 @@ OFrames::OFrames( const css::uno::Reference< XFrame >& xOwner
OFrames::~OFrames()
{
- // Reset instance, free memory ....
+ // Reset instance, free memory...
impl_resetObject();
}
@@ -287,7 +287,7 @@ void OFrames::impl_resetObject()
// Attention:
// Write this for multiple calls - NOT AT THE SAME TIME - but for more than one call again)!
// It exist two ways to call this method. From destructor and from disposing().
- // I can't say, which one is the first. Normally the disposing-call - but other way ....
+ // I can't say, which one is the first. Normally the disposing-call - but other way...
// This instance can't work if the weakreference to owner is invalid!
// Destroy this to reset this object.
diff --git a/framework/source/inc/loadenv/loadenvexception.hxx b/framework/source/inc/loadenv/loadenvexception.hxx
index 73639cace389..a59fc9cb48ef 100644
--- a/framework/source/inc/loadenv/loadenvexception.hxx
+++ b/framework/source/inc/loadenv/loadenvexception.hxx
@@ -38,7 +38,7 @@ class LoadEnvException
public:
/** @short Can be used as an ID for an instance of a LoadEnvException.
@descr To prevent errors on adding/removing/changing such IDs here,
- an enum field is used. Its int values are self organized ...
+ an enum field is used. Its int values are self organized...
*/
enum EIDs
{
@@ -50,7 +50,7 @@ class LoadEnvException
should be thrown, if a required item does not exists. */
ID_INVALID_MEDIADESCRIPTOR,
- /** @short Its similar to a uno::RuntimeException ....
+ /** @short Its similar to a uno::RuntimeException...
@descr But such runtime exception can break the whole office code.
So its capsulated to this specialized load environment only.
Mostly it indicates a missing but needed resource ... e.g the
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index e4cc05c5567a..8f6faa5d544b 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -2710,8 +2710,8 @@ sal_Int16 SAL_CALL XFrameImpl::resetActionLocks()
}
// Attention:
- // external lock count is 0 here every time ... but if
- // member m_bSelfClose is set to true too .... we call our own close()/dispose().
+ // external lock count is 0 here every time... but if
+ // member m_bSelfClose is set to true too... we call our own close()/dispose().
// See close() for further information
implts_checkSuicide();
diff --git a/framework/source/services/pathsettings.cxx b/framework/source/services/pathsettings.cxx
index 6a6363217b43..9ad1f9ac1a4d 100644
--- a/framework/source/services/pathsettings.cxx
+++ b/framework/source/services/pathsettings.cxx
@@ -80,7 +80,7 @@ sal_Int32 impl_getPropGroup(sal_Int32 nID)
return (nID % IDGROUP_COUNT);
}
-/* enable it if you wish to migrate old user settings (using the old cfg schema) on demand ....
+/* enable it if you wish to migrate old user settings (using the old cfg schema) on demand...
disable it in case only the new schema must be used.
*/