summaryrefslogtreecommitdiff
path: root/test/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-31 16:04:19 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-09-01 19:54:19 +0200
commitf700902e903ee610cb5ff58769ee4ca345b4f696 (patch)
tree60e1820d072a26ce4761f2df31f27e4e2bd925ec /test/source
parentb13c2808127b36052a747aee35ecf607fc46d7ce (diff)
Fix typo in code
It passed "make check" on Linux Change-Id: I77ea2951798ce84bb5ec617ff16e7ea918b8ef5d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101795 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'test/source')
-rw-r--r--test/source/text/textdocumentindex.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/source/text/textdocumentindex.cxx b/test/source/text/textdocumentindex.cxx
index 63873e2b4742..67f161cf3472 100644
--- a/test/source/text/textdocumentindex.cxx
+++ b/test/source/text/textdocumentindex.cxx
@@ -18,19 +18,19 @@ TextDocumentIndex::~TextDocumentIndex() {}
void TextDocumentIndex::testDocumentIndexProperties()
{
- css::uno::Reference<css::beans::XPropertySet> xDocumnetIndex(init(), css::uno::UNO_QUERY_THROW);
+ css::uno::Reference<css::beans::XPropertySet> xDocumentIndex(init(), css::uno::UNO_QUERY_THROW);
- testBooleanProperty(xDocumnetIndex, "UseAlphabeticalSeparators");
- testBooleanProperty(xDocumnetIndex, "UseKeyAsEntry");
- testBooleanProperty(xDocumnetIndex, "UseCombinedEntries");
- testBooleanProperty(xDocumnetIndex, "IsCaseSensitive");
- testBooleanProperty(xDocumnetIndex, "UsePP");
- testBooleanProperty(xDocumnetIndex, "UseDash");
- testBooleanProperty(xDocumnetIndex, "UseUpperCase");
- testStringOptionalProperty(xDocumnetIndex, "MainEntryCharacterStyleName");
+ testBooleanProperty(xDocumentIndex, "UseAlphabeticalSeparators");
+ testBooleanProperty(xDocumentIndex, "UseKeyAsEntry");
+ testBooleanProperty(xDocumentIndex, "UseCombinedEntries");
+ testBooleanProperty(xDocumentIndex, "IsCaseSensitive");
+ testBooleanProperty(xDocumentIndex, "UsePP");
+ testBooleanProperty(xDocumentIndex, "UseDash");
+ testBooleanProperty(xDocumentIndex, "UseUpperCase");
+ testStringOptionalProperty(xDocumentIndex, "MainEntryCharacterStyleName");
// [readonly, property] sequence <com::sun::star::text::XDocumentIndexMark> DocumentIndexMarks;
// [property] com::sun::star::lang::Locale Locale;
- testStringProperty(xDocumnetIndex, "SortAlgorithm", "Value");
+ testStringProperty(xDocumentIndex, "SortAlgorithm", "Value");
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */