Kaydet (Commit) 4defe28e authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Michael Stahl

Fix typos

Change-Id: Icb2d5f8bb9eb781d6a59384e1aac75abf6145774
Reviewed-on: https://gerrit.libreoffice.org/51337Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: 's avatarJenkins <ci@libreoffice.org>
üst aab3bffe
......@@ -3081,7 +3081,7 @@ struct BorderDistances
// border position (modulo rounding errors):
// 1. When distance of all borders from text is no greater than 31 pt, we use "from text"
// 2. Otherwise, if distance of all borders from edge is no greater than 31 pt, we use "from edge"
// In all other cases, the position of borders would be distirted on export, because Word doesn't
// In all other cases, the position of borders would be distorted on export, because Word doesn't
// support the offset of >31 pts (https://msdn.microsoft.com/en-us/library/ff533820), and we need
// to decide which type of offset would provide less wrong result (i.e., the result would look
// closer to original). Here, we just check sum of distances from text to borders, and if it is
......
......@@ -129,7 +129,7 @@ OString generateCompHelperDeclaration(std::ostream & o,
" css::uno::Reference< css::uno::XComponentContext > const & "
"context );\n\n";
// close namepsace
// close namespace
for (short i=0; i < nbrackets; i++)
o << "} ";
o << "// closing component helper namespace\n\n";
......@@ -169,7 +169,7 @@ void generateCompHelperDefinition(std::ostream & o,
" return static_cast< ::cppu::OWeakObject * >(new "
<< classname << "(context));\n}\n\n";
// close namepsace
// close namespace
for (short j=0; j < nbrackets; j++)
o << "} ";
o << "// closing component helper namespace\n\n";
......@@ -1041,14 +1041,14 @@ void generateSkeleton(ProgramOptions const & options,
nmspace, propertyhelper);
if (serviceobject) {
// close namepsace
// close namespace
*pofs << "} // closing anonymous implementation namespace\n\n";
generateCompHelperDefinition(*pofs, options.implname,
classname, services);
generateCompFunctions(*pofs, nmspace);
} else {
// close namepsace
// close namespace
for (short i=0; i < nm; i++)
*pofs << "} ";
*pofs << (nm > 0 ? "// closing namespace\n\n" : "\n");
......@@ -1209,7 +1209,7 @@ void generateCalcAddin(ProgramOptions const & options,
generateMethodBodies(*pofs, options, manager, interfaces, classname,
nmspace, propertyhelper);
// close namepsace
// close namespace
*pofs << "} // closing anonymous implementation namespace\n\n";
generateCompHelperDefinition(*pofs, options.implname, classname,
......
......@@ -669,7 +669,7 @@ void SectionPropertyMap::SetBorderDistance( const uno::Reference< beans::XProper
nNewDist = nMargin - nDistance - nLineWidth;
break;
}
// Ensure corrent distance from page edge to text in cases not supported by us:
// Ensure correct distance from page edge to text in cases not supported by us:
// when border is outside entire page area (eOffsetFrom == Text && nDistance > nMargin),
// and when border is inside page body area (eOffsetFrom == Edge && nDistance > nMargin)
if (nNewMargin < 0)
......
......@@ -2207,8 +2207,8 @@ void SvXMLImportFastNamespaceHandler::addNSDeclAttributes( rtl::Reference < comp
void SvXMLImportFastNamespaceHandler::registerNamespace( const OUString& rNamespacePrefix, const OUString& rNamespaceURI )
{
// Elements with default namespace parsed by FastParser have namepsace prefix.
// A default namespace needs to be registered with the prefix, to maintan the compatibility.
// Elements with default namespace parsed by FastParser have namespace prefix.
// A default namespace needs to be registered with the prefix, to maintain the compatibility.
if ( rNamespacePrefix.isEmpty() )
m_aNamespaceDefines.push_back( o3tl::make_unique<NamespaceDefine>(
SvXMLImport::getNamespacePrefixFromURI( rNamespaceURI ), rNamespaceURI) );
......
......@@ -919,7 +919,7 @@ void SvXMLExportPropertyMapper::_exportXML(
else
{
// check if there is a prefix registered for the
// namepsace URI
// namespace URI
nKey = pNamespaceMap->GetKeyByName( sNamespace );
if( XML_NAMESPACE_UNKNOWN == nKey )
{
......
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