[Libreoffice-commits] core.git: configure.ac sw/source
Andrea Gelmini
andrea.gelmini at gelma.net
Tue Oct 31 21:01:41 UTC 2017
configure.ac | 2 +-
sw/source/core/edit/edfcol.cxx | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 3bb58b6b42ca4b96dfbe2c3ac82f77a8e98b7db6
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date: Tue Oct 31 21:53:42 2017 +0100
Fix typos
Change-Id: I89d6849a166a245eec7654ea6e1cfd62ee0c3c60
Reviewed-on: https://gerrit.libreoffice.org/44138
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
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);
More information about the Libreoffice-commits
mailing list