summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-01 09:22:03 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-01 09:57:50 +0200
commit9c06059ec546683bfa095cf4f59ac6ea94da34fb (patch)
treeda8daf7a3d51c33469f9ef8112900a2dd512e037
parentFix typo (diff)
downloadcore-9c06059ec546683bfa095cf4f59ac6ea94da34fb.tar.gz
core-9c06059ec546683bfa095cf4f59ac6ea94da34fb.zip
Fix typos
Change-Id: I425988a6d99f81574ddec832852873971a03e9e7 Reviewed-on: https://gerrit.libreoffice.org/78362 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl6
-rw-r--r--framework/inc/threadhelp/gate.hxx2
-rw-r--r--include/svx/svdedtv.hxx2
-rw-r--r--sd/source/ui/dlg/prltempl.cxx4
-rw-r--r--svtools/source/config/test/test.cxx2
5 files changed, 8 insertions, 8 deletions
diff --git a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
index 2f4830d0b9ed..c9e16ace8fa5 100644
--- a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
+++ b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
@@ -6318,7 +6318,7 @@
<xsl:when test="../@ss:StyleID">
<xsl:value-of select="../@ss:StyleID"/>
</xsl:when>
- <!-- if no correspondent column style exisit.. -->
+ <!-- if no correspondent column style exists... -->
<!-- inherit style from parent table style -->
<xsl:when test="../../@ss:StyleID">
<!-- function to give in col-pos and get back column style -->
@@ -6741,7 +6741,7 @@
<xsl:value-of select="../@ss:StyleID"/>
</xsl:attribute>
</xsl:when>
- <!-- if no correspondent column style exisit.. -->
+ <!-- if no correspondent column style exists... -->
<!-- inherit style from parent table style -->
<xsl:when test="../../@ss:StyleID">
<!-- function to give in col-pos and get back column style -->
@@ -6999,7 +6999,7 @@
</xsl:attribute>
</xsl:when>
</xsl:choose>
- <!-- maybe multi functions occur at same time in the same Cell, such as ConditionalFormatting and DataValidation -->
+ <!-- maybe multi functions occur at the same time in the same Cell, such as ConditionalFormatting and DataValidation -->
<xsl:if test="contains($condition-pos-str, $current-pos-str)">
<xsl:choose>
<xsl:when test="starts-with($temp-str, 'v')">
diff --git a/framework/inc/threadhelp/gate.hxx b/framework/inc/threadhelp/gate.hxx
index 5928d3e16444..f0113f398878 100644
--- a/framework/inc/threadhelp/gate.hxx
+++ b/framework/inc/threadhelp/gate.hxx
@@ -27,7 +27,7 @@
namespace framework{
/*-************************************************************************************************************
- @short implement a gate to block multiple threads at same time or unblock all
+ @short implement a gate to block multiple threads at the same time or unblock all
@descr A gate can be used as a negative-condition! You can open a "door" - wait() will not block ...
or you can close it - wait() blocks till open() is called again.
Then all currently waiting threads are running immediately - but new ones are blocked!
diff --git a/include/svx/svdedtv.hxx b/include/svx/svdedtv.hxx
index 1b662cde29c5..973a28cd1b9e 100644
--- a/include/svx/svdedtv.hxx
+++ b/include/svx/svdedtv.hxx
@@ -129,7 +129,7 @@ protected:
SdrObject* ImpConvertOneObj(SdrObject* pObj, bool bPath, bool bLineToArea);
// set both flags: bToTopPossible and bToBtmPossible.
- // bToTopPossibleDirty and bToBtmPossibleDirty are reset at same time
+ // bToTopPossibleDirty and bToBtmPossibleDirty are reset at the same time
void ImpCheckToTopBtmPossible();
// for CombineMarkedObjects and DismantleMarkedObjects
diff --git a/sd/source/ui/dlg/prltempl.cxx b/sd/source/ui/dlg/prltempl.cxx
index 8dc8ca9edd05..ac1cefc199bf 100644
--- a/sd/source/ui/dlg/prltempl.cxx
+++ b/sd/source/ui/dlg/prltempl.cxx
@@ -56,7 +56,7 @@ SdPresLayoutTemplateDlg::SdPresLayoutTemplateDlg(SfxObjectShell const * pDocSh,
{
if( IS_OUTLINE(ePO))
{
- // Unfortunately, the Itemsets of our style sheets are not discreet..
+ // Unfortunately, the Itemsets of our style sheets are not discrete...
const sal_uInt16* pPtr = pOrgSet->GetRanges();
sal_uInt16 p1, p2;
while( *pPtr )
@@ -64,7 +64,7 @@ SdPresLayoutTemplateDlg::SdPresLayoutTemplateDlg(SfxObjectShell const * pDocSh,
p1 = pPtr[0];
p2 = pPtr[1];
- // first, we make it discreet
+ // first, we make it discrete
while(pPtr[2] && (pPtr[2] - p2 == 1))
{
p2 = pPtr[3];
diff --git a/svtools/source/config/test/test.cxx b/svtools/source/config/test/test.cxx
index de4a910050c1..0f2232139799 100644
--- a/svtools/source/config/test/test.cxx
+++ b/svtools/source/config/test/test.cxx
@@ -199,7 +199,7 @@ void TestApplication::impl_testDynamicMenuOptions()
// create new uno servicemanager by using normal applicat.rdb and user.rdb of an office installation!
-// Don't use this application at same time like the office!
+// Don't use this application at the same time like the office!
Reference< XMultiServiceFactory > TestApplication::getUNOServiceManager()
{