summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-19 18:03:46 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-19 22:07:44 +0200
commit0be225fb60f41b29f283eddd83938c047c552893 (patch)
treeffb8f5edb93c8b762e860db9c0505431ce940425
parent8a07588cb648e26a3fc06643b0210fc75201afb8 (diff)
Fix typos
Change-Id: Ideee477b0c8f0d472a607ed69ba51351d87f61bc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101010 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
-rw-r--r--framework/source/helper/dockingareadefaultacceptor.cxx4
-rw-r--r--hwpfilter/source/hwpreader.cxx2
-rw-r--r--include/basegfx/polygon/b2dpolygon.hxx2
-rw-r--r--include/framework/addonsoptions.hxx2
-rw-r--r--include/svl/broadcast.hxx2
-rw-r--r--include/ucbhelper/commandenvironment.hxx2
-rw-r--r--include/ucbhelper/registerucb.hxx2
-rw-r--r--include/vcl/outdev.hxx2
-rw-r--r--include/xmloff/txtparae.hxx2
-rw-r--r--jvmfwk/inc/elements.hxx2
10 files changed, 11 insertions, 11 deletions
diff --git a/framework/source/helper/dockingareadefaultacceptor.cxx b/framework/source/helper/dockingareadefaultacceptor.cxx
index 9d51d2052516..d167bc11157f 100644
--- a/framework/source/helper/dockingareadefaultacceptor.cxx
+++ b/framework/source/helper/dockingareadefaultacceptor.cxx
@@ -78,7 +78,7 @@ sal_Bool SAL_CALL DockingAreaDefaultAcceptor::requestDockingAreaSpace( const css
css::awt::Size aSize ( aRectangle.Width - aInfo.LeftInset - aInfo.RightInset ,
aRectangle.Height - aInfo.TopInset - aInfo.BottomInset );
- css::awt::Size aMinSize( 0, 0 ); // = xLayoutContrains->getMinimumSize();
+ css::awt::Size aMinSize( 0, 0 ); // = xLayoutConstraints->getMinimumSize();
// Check if request border space would decrease component window size below minimum size
if ((( aSize.Width - RequestedSpace.X - RequestedSpace.Width ) < aMinSize.Width ) ||
@@ -113,7 +113,7 @@ void SAL_CALL DockingAreaDefaultAcceptor::setDockingAreaSpace( const css::awt::R
css::awt::DeviceInfo aInfo = xDevice->getInfo();
css::awt::Size aSize ( aRectangle.Width - aInfo.LeftInset - aInfo.RightInset ,
aRectangle.Height - aInfo.TopInset - aInfo.BottomInset );
- css::awt::Size aMinSize( 0, 0 );// = xLayoutContrains->getMinimumSize();
+ css::awt::Size aMinSize( 0, 0 );// = xLayoutConstraints->getMinimumSize();
// Check if request border space would decrease component window size below minimum size
sal_Int32 nWidth = aSize.Width - BorderSpace.X - BorderSpace.Width;
diff --git a/hwpfilter/source/hwpreader.cxx b/hwpfilter/source/hwpreader.cxx
index e647f3882d58..28a9979ee528 100644
--- a/hwpfilter/source/hwpreader.cxx
+++ b/hwpfilter/source/hwpreader.cxx
@@ -4873,7 +4873,7 @@ HwpImportFilter::HwpImportFilter(const Reference< XComponentContext >& rxContext
sal_Bool HwpImportFilter::filter( const Sequence< PropertyValue >& aDescriptor )
{
- // delegate to IchitaroImpoter
+ // delegate to IchitaroImporter
return rFilter->filter( aDescriptor );
}
diff --git a/include/basegfx/polygon/b2dpolygon.hxx b/include/basegfx/polygon/b2dpolygon.hxx
index 997a669bcba3..e74b458ec3af 100644
--- a/include/basegfx/polygon/b2dpolygon.hxx
+++ b/include/basegfx/polygon/b2dpolygon.hxx
@@ -201,7 +201,7 @@ namespace basegfx
@param nCount
The number of points to append from rPoly, starting
- from nIndex. If zero, as much as possibel is appended
+ from nIndex. If zero, as much as possible is appended
*/
void append(const B2DPolygon& rPoly, sal_uInt32 nIndex = 0, sal_uInt32 nCount = 0);
diff --git a/include/framework/addonsoptions.hxx b/include/framework/addonsoptions.hxx
index 3c00e5a9fb6f..07684311bbe9 100644
--- a/include/framework/addonsoptions.hxx
+++ b/include/framework/addonsoptions.hxx
@@ -196,7 +196,7 @@ class UNLESS_MERGELIBS(FWK_DLLPUBLIC) AddonsOptions
/*-****************************************************************************************************
@short Retrieves all available merge instructions for the Office menu bar
- @return The filled MergeMenuDefinitionContaier
+ @return The filled MergeMenuDefinitionContainer
@onerror We return sal_False
*//*-*****************************************************************************************************/
diff --git a/include/svl/broadcast.hxx b/include/svl/broadcast.hxx
index 69a7f4ad029e..c1996ccfeda7 100644
--- a/include/svl/broadcast.hxx
+++ b/include/svl/broadcast.hxx
@@ -69,7 +69,7 @@ public:
* To avoid that, use this call to announce to the broadcaster it is going
* to die, and the listeners do not have to bother with removing
* themselves from the broadcaster - the broadcaster will not broadcast
- * anything after the PrepareForDesctruction() call anyway.
+ * anything after the PrepareForDestruction() call anyway.
*/
void PrepareForDestruction();
diff --git a/include/ucbhelper/commandenvironment.hxx b/include/ucbhelper/commandenvironment.hxx
index a91fd9587c59..a09d70e5a9e7 100644
--- a/include/ucbhelper/commandenvironment.hxx
+++ b/include/ucbhelper/commandenvironment.hxx
@@ -61,7 +61,7 @@ public:
*/
virtual ~CommandEnvironment() override;
- // XCommandEnvironemnt
+ // XCommandEnvironment
virtual css::uno::Reference< css::task::XInteractionHandler > SAL_CALL getInteractionHandler() override;
virtual css::uno::Reference< css::ucb::XProgressHandler > SAL_CALL getProgressHandler() override;
diff --git a/include/ucbhelper/registerucb.hxx b/include/ucbhelper/registerucb.hxx
index 7ca407371a5e..1e103f927f9d 100644
--- a/include/ucbhelper/registerucb.hxx
+++ b/include/ucbhelper/registerucb.hxx
@@ -63,7 +63,7 @@ typedef std::vector< ContentProviderData > ContentProviderDataList;
@param rManager A content provider manager (normally, this would be a
UCB). May be null, which is only useful if the content provider is an
- XParamterizedContentProviders.
+ XParameterizedContentProviders.
@param rServiceFactory A factory through which to obtain the required
services.
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index ce4c204d3d94..df9acf7735a4 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -1351,7 +1351,7 @@ public:
ImplLayoutArgs& rLayoutArgs) const;
- // Enabling/disabling RTL only makes sense for OutputDevices that use a mirroring SalGraphisLayout
+ // Enabling/disabling RTL only makes sense for OutputDevices that use a mirroring SalGraphicsLayout
virtual void EnableRTL( bool bEnable = true);
bool IsRTLEnabled() const { return mbEnableRTL; }
diff --git a/include/xmloff/txtparae.hxx b/include/xmloff/txtparae.hxx
index 44c15512cd70..5c09d2a782be 100644
--- a/include/xmloff/txtparae.hxx
+++ b/include/xmloff/txtparae.hxx
@@ -330,7 +330,7 @@ protected:
const XMLTextNumRuleInfo& rNextInfo );
/// check if current section or current list has changed;
- /// calls exortListChange as appropriate
+ /// calls exportListChange as appropriate
void exportListAndSectionChange(
css::uno::Reference< css::text::XTextSection > & rOldSection,
const css::uno::Reference< css::text::XTextSection > & rNewSection,
diff --git a/jvmfwk/inc/elements.hxx b/jvmfwk/inc/elements.hxx
index 800ecaf697fb..58ad6044f300 100644
--- a/jvmfwk/inc/elements.hxx
+++ b/jvmfwk/inc/elements.hxx
@@ -176,7 +176,7 @@ private:
*/
std::optional< ::std::vector< OUString> > m_vmParameters;
/** User configurable option. /java/jreLocations
- If /java/jreLocaltions@xsi:nil == true then the value is uninitialized
+ If /java/jreLocations@xsi:nil == true then the value is uninitialized
after a call to load.
*/
std::optional< ::std::vector< OUString> > m_JRELocations;