summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-10-31 21:53:42 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-10-31 22:01:16 +0100
commit3bb58b6b42ca4b96dfbe2c3ac82f77a8e98b7db6 (patch)
tree8ccd7c53f8af795fb4e2bc8d2fd36ca60ecba73b
parent2ab246dee99cc94957647cde44515e97b854aac0 (diff)
Fix typos
Change-Id: I89d6849a166a245eec7654ea6e1cfd62ee0c3c60 Reviewed-on: https://gerrit.libreoffice.org/44138 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--configure.ac2
-rw-r--r--sw/source/core/edit/edfcol.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 752c78272d7c..30e0de323c99 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6476,7 +6476,7 @@ AC_SUBST([JITC_PROCESSOR_TYPE])
# Misc Windows Stuff
AC_ARG_WITH(ucrt-dir,
AS_HELP_STRING([--with-ucrt-dir],
- [path to the directory with the arch-specific subdirectories of the Windows Universtal CRT redistributables
+ [path to the directory with the arch-specific subdirectories of the Windows Universal CRT redistributables
from the Windows 10 SDK for packaging into the installsets (without those the target system needs to install
the Visual C++ Runtimes manually)]),
,)
diff --git a/sw/source/core/edit/edfcol.cxx b/sw/source/core/edit/edfcol.cxx
index d6ee2c0f8af0..0162cfaab48e 100644
--- a/sw/source/core/edit/edfcol.cxx
+++ b/sw/source/core/edit/edfcol.cxx
@@ -804,7 +804,7 @@ std::vector<svx::ClassificationResult> SwEditShell::CollectAdvancedClassificatio
uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xParagraphs->nextElement(), uno::UNO_QUERY);
uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
- // Check font weitght
+ // Check font weight
uno::Reference<beans::XPropertySet> xParagraphPropertySet(xTextPortionEnumerationAccess, uno::UNO_QUERY_THROW);
uno::Any aAny = xParagraphPropertySet->getPropertyValue("CharWeight");
@@ -812,7 +812,7 @@ std::vector<svx::ClassificationResult> SwEditShell::CollectAdvancedClassificatio
aResult.push_back({ svx::ClassificationType::PARAGRAPH, sWeight, sBlank });
- // Process portions..
+ // Process portions
while (xTextPortions->hasMoreElements())
{
uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);