Kaydet (Commit) 597e694e authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Samuel Mehrbrodt

Fix typos

Change-Id: I90b04b8eda6fc3d530c9db72052720cbe9de0343
Reviewed-on: https://gerrit.libreoffice.org/21197Reviewed-by: 's avatarSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: 's avatarSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
üst 5e0d36ad
......@@ -68,7 +68,7 @@ Step 4: Changing the versions in the cli_ure module.
Open the file cli_ure\version\version.txt.
The file contains name/value pairs, such as:CLI_URETYPES_NEW_VERSION=1.0.3.0.
The first part of the names represent the assemly which they are referring to. So obviously
The first part of the names represent the assembly which they are referring to. So obviously
entries starting with CLI_URETYPES refer to the cli_uretypes.dll. Entries which contain the part "POLICY" refer
to the policy assembly. For example:
CLI_URETYPES_POLICY_VERSION refers to the policy assembly for cli_uretypes which is named
......
......@@ -1428,7 +1428,7 @@ void Bridge::map_to_uno(void * uno_data, System::Object^ cli_data,
/**
@param info
The expected target type. Currently info is provdided when this method is called
The expected target type. Currently info is provided when this method is called
to convert the in/out and out parameters of a call from cli to uno. Then info
is always a byref type, e.g. "System.String&". info is used for Any and Enum conversion.
@param bDontCreateObj
......@@ -1537,7 +1537,7 @@ void Bridge::map_to_cli(
//create the type
System::Type^ cliType= loadCliType(td.get()->pTypeName);
//detect if we recursivly convert inherited structures
//If this point is reached because of a recursive call during convering a
//If this point is reached because of a recursive call during covering a
//struct then we must not create a new object rather we use the one in
// cli_data argument.
System::Object^ cliObj;
......
......@@ -268,7 +268,7 @@ struct CliProxy: public uno_Interface
If the interface has more than one interface in its inheritance chain,
that is Type.GetInterfaces return more than one Type, then the mapping
table is partially initiallized. On the first call the mappings for the
table is partially initialized. On the first call the mappings for the
methods of the belonging interface are created.
The implementation assumes that the order of interface methods as
......
......@@ -313,7 +313,7 @@ public class Map
// - if a map's value type is a scalar type, or a string, then nothing but this
// type should be accepted
// - if a map's value type is an interface type, then values should be accepted if
// they contain a derived interface, or the interrface itself, or if they can be
// they contain a derived interface, or the interface itself, or if they can be
// queried for this interface (actually, the latter rule is not tested with the
// above matrix)
// - if a map's value type is a struct or exception, then values should be accepted
......
......@@ -122,7 +122,7 @@ namespace
@return
<TRUE/> if and only if the client could be found and
<arg>rPos</arg> has been filled with it's position
<arg>rPos</arg> has been filled with its position
*/
static bool implLookupClient(
const AccessibleEventNotifier::TClientId nClient,
......@@ -157,8 +157,8 @@ namespace comphelper
new ::cppu::OInterfaceContainerHelper( lclMutex::get() );
// note that we're using our own mutex here, so the listener containers for all
// our clients share this same mutex.
// this is a reminiscense to the days where the notifier was asynchronous. Today this is
// completely nonsense, and potentially slowing down the Office me thinks ...
// this is a reminiscence to the days where the notifier was asynchronous. Today this is
// completely nonsense, and potentially slowing down the Office me thinks...
// add the client
Clients::get().insert( ClientMap::value_type( nNewClientId, pNewListeners ) );
......
......@@ -244,7 +244,7 @@ namespace comphelper
if ( m_aChildrenMap.end() == aDisposedPos )
{
OSL_FAIL( "OWrappedAccessibleChildrenManager::disposing: where did this come from?" );
// helper for dignostics
// helper for diagnostics
Reference< XAccessible > xOwningAccessible( m_aOwningAccessible );
Reference< XAccessibleContext > xContext;
try
......
......@@ -75,7 +75,7 @@ void NumberedCollection::setUntitledPrefix(const OUString& sPrefix)
sal_IntPtr pComponent = reinterpret_cast<sal_IntPtr>( xComponent.get() );
TNumberedItemHash::const_iterator pIt = m_lComponents.find (pComponent);
// a) component already exists - return it's number directly
// a) component already exists - return its number directly
if (pIt != m_lComponents.end())
return pIt->second.nNumber;
......
......@@ -127,7 +127,7 @@ void OPropertyContainerHelper::registerPropertyNoMember(const OUString& _rName,
OSL_ENSURE(!_rType.equals(cppu::UnoType<Any>::get()),
"OPropertyContainerHelper::registerPropertyNoMember : don't give my the type of an uno::Any ! Really can't handle this !");
OSL_ENSURE(_pInitialValue || ((_nAttributes & PropertyAttribute::MAYBEVOID) != 0),
"OPropertyContainerHelper::registerPropertyNoMember : you should not omit the initial value if the property can't be void ! This will definitivly crash later !");
"OPropertyContainerHelper::registerPropertyNoMember : you should not omit the initial value if the property can't be void! This will definitively crash later!");
PropertyDescription aNewProp;
aNewProp.aProperty = Property( _rName, _nHandle, _rType, (sal_Int16)_nAttributes );
......
......@@ -142,7 +142,7 @@ bool CStyleCast::VisitCStyleCastExpr(const CStyleCastExpr * expr) {
if( expr->getCastKind() == CK_ToVoid ) {
return true;
}
// ignore integral-type conversions for now, there is unsufficient agreement about
// ignore integral-type conversions for now, there is insufficient agreement about
// the merits of C++ style casting in this case
if( expr->getCastKind() == CK_IntegralCast ) {
return true;
......
......@@ -120,7 +120,7 @@ bool MergeClasses::VisitCXXConstructExpr( const CXXConstructExpr* pCXXConstructE
if (ignoreLocation(pCXXConstructExpr)) {
return true;
}
// ignore calls when a sub-class is constructing it's superclass
// ignore calls when a sub-class is constructing its superclass
if (pCXXConstructExpr->getConstructionKind() != CXXConstructExpr::ConstructionKind::CK_Complete) {
return true;
}
......
......@@ -159,7 +159,7 @@ bool containsXInterfaceSubclass(const Type* pType0) {
const CXXRecordDecl* pRecordDecl = pType->getAsCXXRecordDecl();
if (pRecordDecl) {
pRecordDecl = pRecordDecl->getCanonicalDecl();
// these classes override acquire/release and forwards to it's parent
// these classes override acquire/release and forwards to its parent
if (isDerivedFrom(pRecordDecl, "ListenerMultiplexerBase")) { // module UnoTools
return false;
}
......
......@@ -138,7 +138,7 @@ bool StaticMethods::TraverseCXXMethodDecl(const CXXMethodDecl * pCXXMethodDecl)
if (startsWith(aFilename, SRCDIR "/include/canvas") || startsWith(aFilename, SRCDIR "/canvas")) {
return true;
}
// classes that have static data and some kind of weird reference-counting trick in it's constructor
// classes that have static data and some kind of weird reference-counting trick in its constructor
if (aParentName == "LinguOptions" || aParentName == "svtools::EditableExtendedColorConfig"
|| aParentName == "svtools::ExtendedColorConfig" || aParentName == "SvtMiscOptions"
|| aParentName == "SvtAccessibilityOptions" || aParentName == "svtools::ColorConfig"
......
......@@ -1099,7 +1099,7 @@ EOF
# uname -m prints for DJGPP always 'pc', but it prints nothing about
# the processor, so we play safe by assuming i586.
# Note: whatever this is, it MUST be the same as what config.sub
# prints for the "djgpp" host, or else GDB configury will decide that
# prints for the "djgpp" host, or else GDB configure will decide that
# this is a cross-build.
echo i586-pc-msdosdjgpp
exit ;;
......
......@@ -12,7 +12,7 @@ Settings related to Clang compiler plugins.
#undef WORKDIR
/* This is actually unused, but it should change whenever Clang changes,
thus causing update of this .h file and triggerring rebuild of our Clang plugin. */
thus causing update of this .h file and triggering rebuild of our Clang plugin. */
#undef CLANG_FULL_VERSION
#endif
......@@ -348,7 +348,7 @@ css::uno::Type Access::getElementType() throw (css::uno::RuntimeException, std::
case Node::KIND_GROUP:
//TODO: Should a specific type be returned for a non-extensible group
// with homogeneous members or for an extensible group that currently
// has only homegeneous members?
// has only homogeneous members?
return cppu::UnoType<void>::get();
case Node::KIND_SET:
return cppu::UnoType<void>::get(); //TODO: correct?
......
......@@ -79,7 +79,7 @@ public:
void writeModifications();
void flushModifications();
// must be called with configmgr::lock unaquired; must be called before
// must be called with configmgr::lock unacquired; must be called before
// shutdown if writeModifications has ever been called (probably
// indirectly, via removeExtensionXcuFile)
......
......@@ -54,7 +54,7 @@ extern "C" {
// * The names of set element nodes are encoded as dconf path segments as
// follows: each occurrence of U+0000 NULL is replace by the three characters
// "\00", each occurrence of U+002F SOLIDUS is replaced by the three
// characters "\2F", and each ocurrence of U+005C REVERSE SOLIDUS is replaced
// characters "\2F", and each occurrence of U+005C REVERSE SOLIDUS is replaced
// by the three characters "\5C".
//
// * Set elements (which must themselves be either sets or groups) map to
......
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