Fix typos

Change-Id: Ifaa52b49b717d893846fc1e7ae4ac50735f824ac
Reviewed-on: https://gerrit.libreoffice.org/16260
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
This commit is contained in:
Andrea Gelmini 2015-06-13 15:52:56 +02:00 committed by Andras Timar
parent c1fc84ac14
commit 1f408db497
11 changed files with 12 additions and 12 deletions

View File

@ -667,7 +667,7 @@ class FilterCache : public BaseLock
object.
@param bLocalesMode
enable/disable special handling of localized configuratiom
enable/disable special handling of localized configuration
items by the returned configuration object.
@return A valid reference, if the configuration access could be opened
@ -867,7 +867,7 @@ class FilterCache : public BaseLock
this list to check if the item was changed/added or removed. This method
checks the exist state of the requested item inside our own cache
and inside the underlying configuration layer to find out, if the item
must be removed/added or modified inside the configuratuion layer.
must be removed/added or modified inside the configuration layer.
@param xSet
points directly to the configuration set, where the item should resist

View File

@ -552,7 +552,7 @@ private:
/** @short open the underlying configuration.
@descr This method must be called every time
a configuartion call is needed. Because
a configuration call is needed. Because
method works together with the member
m_xCFG, open it on demand and cache it
afterwards.

View File

@ -32,7 +32,7 @@ void LibXmlTreeWalker::nextNode()
}
else
m_pCurrentNode = m_pCurrentNode->next;
//queue chiledren if they exist
//queue children if they exist
if ( m_pCurrentNode->xmlChildrenNode != NULL )
m_Queue.push_back( m_pCurrentNode->xmlChildrenNode );
}

View File

@ -172,7 +172,7 @@ class SVT_DLLPUBLIC AcceleratorExecute : private TMutexInit
/** @short trigger this accelerator.
@descr The internal configuartions are used to find
@descr The internal configurations are used to find
as suitable command for this key code.
This command will be queued and executed later
asynchronous.

View File

@ -79,7 +79,7 @@ class SVT_DLLPUBLIC ContextMenuHelper
// methods to retrieve a single command URL dependent value from a
// ui configuratin manager
// ui configuration manager
Image getImageFromCommandURL( const OUString& aCmdURL ) const;
OUString getLabelFromCommandURL( const OUString& aCmdURL ) const;

View File

@ -683,7 +683,7 @@ namespace
for (sal_Int32 k = 0; k < 2; ++k)
{
// add previously configuerd service first and append
// add previously configured service first and append
// new found services at the end
const Sequence< OUString > &rSeq = k == 0 ? rCfgSvcs : rNewSvcs;

View File

@ -889,7 +889,7 @@ OUString LwpFrameLayout::GetNextLinkName()
{
LwpAtomHolder& rHolder = pLayout->GetName();
aName = rHolder.str();
//for division name confict
//for division name conflict
if(!pLayout->GetStyleName().isEmpty())
aName = pLayout->GetStyleName();
}

View File

@ -190,7 +190,7 @@ void FuPresentationLayout::DoExecute( SfxRequest& rReq )
OUString aFileName = aFile.getToken(0, DOCUMENT_TOKEN);
SdDrawDocument* pTempDoc = mpDoc->OpenBookmarkDoc( aFileName );
// #69581: If I chosed the standard-template I got no filename and so I get no
// #69581: If I chose the standard-template I got no filename and so I get no
// SdDrawDocument-Pointer. But the method SetMasterPage is able to handle
// a NULL-pointer as a Standard-template ( look at SdDrawDocument::SetMasterPage )
OUString aLayoutName;

View File

@ -660,7 +660,7 @@ void WriterXmlOptimizer::checkHeaderAndFooter( PageElement& rElem )
*/
// detect header
// Note: the following assumes that the pages' chiuldren have been
// Note: the following assumes that the pages' children have been
// sorted geometrically
std::list< Element* >::iterator it = rElem.Children.begin();
while( it != rElem.Children.end() )

View File

@ -1521,7 +1521,7 @@ bool WinSalPrinter::StartJob( const OUString* pFileName,
while ( bWhile );
PostMessageW( GetSalData()->mpFirstInstance->mhComWnd, SAL_MSG_DUMMY, 0, 0 );
// bring up a file choser if printing to file port but no file name given
// bring up a file chooser if printing to file port but no file name given
OUString aOutFileName;
if( mpInfoPrinter->maPortName.equalsIgnoreAsciiCase( "FILE:" ) && !(pFileName && !pFileName->isEmpty()) )
{

View File

@ -36,7 +36,7 @@ relevant only for the web-wizard.
On the other-hand, the web-wizard can read those fields automatically
from SO documents.
In order to avoid conflict by saving, I use two fields: "cp_title", which
should be read from the configuratin (saved session), and "title" which is
should be read from the configuration (saved session), and "title" which is
the value read from the document.
The *cp_title* "overrides" *title*, if exists. if not, *title* is used.
The same is valid for *description* and *author*.