foo( int )
, {@link Class#getMethod} would not return this
diff --git a/toolkit/qa/complex/toolkit/GridControl.java b/toolkit/qa/complex/toolkit/GridControl.java
index ab836cc4a057..e76fe9fab55a 100644
--- a/toolkit/qa/complex/toolkit/GridControl.java
+++ b/toolkit/qa/complex/toolkit/GridControl.java
@@ -232,7 +232,7 @@ public class GridControl
impl_assertColumnModelConsistency();
List< ContainerEvent > events = listener.assertExclusiveInsertionEvents();
listener.reset();
- assertEquals( "wrong number of events fired by setDefaulColumns", defaultColumnsCount, events.size() );
+ assertEquals( "wrong number of events fired by setDefaultColumns", defaultColumnsCount, events.size() );
for ( int i=0; i+ * Calls the method and checks the return value.
* Has OK status if one of the return value equals to the
* type com.sun.star.lang.XTypeProvider
.
*/
diff --git a/ucb/source/core/ucbcmds.cxx b/ucb/source/core/ucbcmds.cxx
index f288a60aec18..4f829ddf860f 100644
--- a/ucb/source/core/ucbcmds.cxx
+++ b/ucb/source/core/ucbcmds.cxx
@@ -1602,7 +1602,7 @@ void globalTransfer_(
}
}
-} /* namescpace */
+} /* namespace */
// UniversalContentBroker implementation ( XCommandProcessor commands ).
diff --git a/ucb/source/ucp/file/filtask.cxx b/ucb/source/ucp/file/filtask.cxx
index b64df364a9b6..fbe93ed955f8 100644
--- a/ucb/source/ucp/file/filtask.cxx
+++ b/ucb/source/ucp/file/filtask.cxx
@@ -2373,7 +2373,7 @@ TaskManager::commit( const TaskManager::ContentMap::iterator& it,
{
// extremely ugly, but otherwise default construction
// of aDirItem and aFileStatus2
- // before the preciding if
+ // before the preceding if
isVolume = osl::FileStatus::Volume == aFileStatus.getFileType();
isDirectory =
osl::FileStatus::Volume == aFileStatus.getFileType() ||
diff --git a/ucb/source/ucp/tdoc/tdoc_provider.cxx b/ucb/source/ucp/tdoc/tdoc_provider.cxx
index 190a499992d9..dd44ccee7b70 100644
--- a/ucb/source/ucp/tdoc/tdoc_provider.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_provider.cxx
@@ -583,7 +583,7 @@ ContentProvider::queryStorageTitle( const OUString & rUri ) const
else if ( aUri.isDocument() )
{
// for documents, title shall not be derived from URL. It shall
- // be somethimg more 'speaking' than just the document UID.
+ // be something more 'speaking' than just the document UID.
if ( m_xDocsMgr.is() )
aTitle = m_xDocsMgr->queryStorageTitle( aUri.getDocumentId() );
}
diff --git a/ucb/source/ucp/webdav-neon/ContentProperties.cxx b/ucb/source/ucp/webdav-neon/ContentProperties.cxx
index a3bf1ec2fb76..f9cd24fd0e50 100644
--- a/ucb/source/ucp/webdav-neon/ContentProperties.cxx
+++ b/ucb/source/ucp/webdav-neon/ContentProperties.cxx
@@ -488,7 +488,7 @@ void ContentProperties::addProperty( const OUString & rName,
OUString aValue;
rValue >>= aValue;
- // Map DAV:resourceype to UCP:IsFolder, UCP:IsDocument, UCP:ContentType
+ // Map DAV:resourcetype to UCP:IsFolder, UCP:IsDocument, UCP:ContentType
bool bFolder = aValue.equalsIgnoreAsciiCase( "collection" );
(*m_xProps)[ OUString("IsFolder") ]
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx
index 7ba44b141657..7e21205e6b59 100644
--- a/ucb/source/ucp/webdav-neon/NeonSession.cxx
+++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx
@@ -511,7 +511,7 @@ extern "C" void NeonSession_PreSendRequest( ne_request * req,
// If there is a proxy server in between, it shall never use
// cached data. We always want 'up-to-date' data.
ne_buffer_concat( headers, "Pragma: no-cache", EOL, nullptr );
- // alternative, but understoud by HTTP 1.1 servers only:
+ // alternative, but understood by HTTP 1.1 servers only:
// ne_buffer_concat( headers, "Cache-Control: max-age=0", EOL, NULL );
const RequestDataMap * pRequestData
@@ -892,7 +892,7 @@ void NeonSession::OPTIONS( const OUString & inPath,
// we detect the class (1, 2 and 3), other elements (token, URL)
// are not used for now
// silly parser written using OUString, not very efficient
- // but quick and esy to write...
+ // but quick and easy to write...
sal_Int32 nFromIndex = 0;
sal_Int32 nNextIndex = 0;
while( ( nNextIndex = aHeaderValue.indexOf( ",", nFromIndex ) ) != -1 )
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index 34276231a975..929ae8627ef4 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -2293,7 +2293,7 @@ uno::Any Content::open(
}
xResAccess->setFlags( rArg.OpeningFlags );
- // fill inputsream sync; return if all data present
+ // fill inputstream sync; return if all data present
DAVResource aResource;
std::vector< OUString > aHeaders;
@@ -3872,7 +3872,7 @@ Content::ResourceType Content::getResourceType(
}
if ( e.getStatus() == SC_NOT_FOUND )
{
- // arrives here if OPTIONS is still cached for a resource prevously available
+ // arrives here if OPTIONS is still cached for a resource previously available
// operate on the OPTIONS cache:
// if OPTIONS was not found, do nothing
// else OPTIONS returned on a resource not existent (example a server that allows lock on null resource) set
@@ -4046,7 +4046,7 @@ void Content::getResourceOptions(
case DAVException::DAV_HTTP_CONNECT:
{
// something bad happened to the connection
- // not same as not found, this instead happens when the server does'n exist or does'n aswer at all
+ // not same as not found, this instead happens when the server doesn't exist or doesn't answer at all
// probably a new bit stating 'timed out' should be added to opts var?
// in any case abort the command
SAL_WARN( "ucb.ucp.webdav", "OPTIONS - DAVException: DAV_HTTP_TIMEOUT or DAV_HTTP_CONNECT for URL <" << m_xIdentifier->getContentIdentifier() << ">" );
diff --git a/ucb/source/ucp/webdav/ContentProperties.cxx b/ucb/source/ucp/webdav/ContentProperties.cxx
index 3f6b66ca5ebc..b43f58543782 100644
--- a/ucb/source/ucp/webdav/ContentProperties.cxx
+++ b/ucb/source/ucp/webdav/ContentProperties.cxx
@@ -509,7 +509,7 @@ void ContentProperties::addProperty( const OUString & rName,
OUString aValue;
rValue >>= aValue;
- // Map DAV:resourceype to UCP:IsFolder, UCP:IsDocument, UCP:ContentType
+ // Map DAV:resourcetype to UCP:IsFolder, UCP:IsDocument, UCP:ContentType
bool bFolder =
aValue.equalsIgnoreAsciiCase( "collection" );
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx
index 6c72c3661655..125a099496ec 100644
--- a/ucb/source/ucp/webdav/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav/webdavcontent.cxx
@@ -2147,7 +2147,7 @@ uno::Any Content::open(
new DAVResourceAccess( *m_xResAccess.get() ) );
}
- // fill inputsream sync; return if all data present
+ // fill inputstream sync; return if all data present
DAVResource aResource;
std::vector< OUString > aHeaders;
diff --git a/udkapi/com/sun/star/reflection/TypeDescriptionManager.idl b/udkapi/com/sun/star/reflection/TypeDescriptionManager.idl
index 7b15fd0bc102..90fc63bf2b59 100644
--- a/udkapi/com/sun/star/reflection/TypeDescriptionManager.idl
+++ b/udkapi/com/sun/star/reflection/TypeDescriptionManager.idl
@@ -73,7 +73,7 @@ published service TypeDescriptionManager
Even though the name of this interface suggests that the used type
- names are hierarchic, this need not be the case. (For example, consider
+ names are hierarchical, this doesn't need to be the case. (For example, consider
the names of instantiated polymorphic struct types, like
"Struct<long>"
.)