summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-03 10:31:06 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-01-03 12:19:33 +0100
commit3a355887caacea0ec1c3688d64a2cb85a1fc4c74 (patch)
tree38e5a08195b72b1e9716f9c717516cde27e884b1
parent1b666235f6b0b0f0b13f473bf3b639f4f5f0b12f (diff)
Fix typos
Change-Id: I3f4ad9eff0730d3deea96b37fa7f36dfd038b214 Reviewed-on: https://gerrit.libreoffice.org/47301 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--framework/qa/complex/framework/recovery/RecoveryTest.java2
-rw-r--r--framework/source/services/frame.cxx4
-rw-r--r--qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java2
-rw-r--r--test/source/sheet/tablevalidation.cxx4
4 files changed, 6 insertions, 6 deletions
diff --git a/framework/qa/complex/framework/recovery/RecoveryTest.java b/framework/qa/complex/framework/recovery/RecoveryTest.java
index 4605820e023c..67bda08879cf 100644
--- a/framework/qa/complex/framework/recovery/RecoveryTest.java
+++ b/framework/qa/complex/framework/recovery/RecoveryTest.java
@@ -78,7 +78,7 @@ public class RecoveryTest extends ComplexTestCase {
* @todo: hidden documents
* @todo: running presentation
* @todo: modular dialogs like Hpyerlink-Dialog
- * @todo: sceond view of a document
+ * @todo: second view of a document
* @todo: remove recovery data before start test
* @todo: after a second start after the crash there should no documents recovered anymore
* @todo: enable remove of recovery files
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index cb8a6b82024e..4366c26b0944 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -1022,11 +1022,11 @@ css::uno::Reference< css::frame::XFrame > SAL_CALL Frame::findFrame( const OUStr
/* TODO
Creation not supported yet!
Wait for new layout manager service because we can't plug it
- inside already opened document of this frame ...
+ inside already opened document of this frame...
*/
}
}
- // We arent a task => forward request to our parent or ignore it.
+ // We aren't a task => forward request to our parent or ignore it.
else if (xParent.is())
xTarget = xParent->findFrame(SPECIALTARGET_BEAMER,0);
}
diff --git a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java
index 0eb16534efb7..d69523d5f973 100644
--- a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java
+++ b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java
@@ -76,7 +76,7 @@ public class _XSingleSelectQueryAnalyzer extends MultiMethodTest {
}
/**
* call <code>setQuery()</code> once with valid query, once with invalid
- * query. Has ok if only on sceond call <code>SQLException</code> was thrown
+ * query. Has ok if only on second call <code>SQLException</code> was thrown
*/
public void _setQuery() {
diff --git a/test/source/sheet/tablevalidation.cxx b/test/source/sheet/tablevalidation.cxx
index e953e0f2f111..24d2ace8d644 100644
--- a/test/source/sheet/tablevalidation.cxx
+++ b/test/source/sheet/tablevalidation.cxx
@@ -142,12 +142,12 @@ void TableValidation::testTableValidationProperties()
propName = "ShowList";
sal_Int16 aShowList = 0;
CPPUNIT_ASSERT(xTableValidation->getPropertyValue(propName) >>= aShowList);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unabel to get property value ShowList", sal_Int16(1), aShowList);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to get property value ShowList", sal_Int16(1), aShowList);
aNewValue <<= sal_Int16(42);
xTableValidation->setPropertyValue(propName, aNewValue);
CPPUNIT_ASSERT(xTableValidation->getPropertyValue(propName) >>= aShowList);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unabel to set property value ShowList", sal_Int16(42), aShowList);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to set property value ShowList", sal_Int16(42), aShowList);
}
}