Kaydet (Commit) 3a355887 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typos

Change-Id: I3f4ad9eff0730d3deea96b37fa7f36dfd038b214
Reviewed-on: https://gerrit.libreoffice.org/47301Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 1b666235
......@@ -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
......
......@@ -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);
}
......
......@@ -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() {
......
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment