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

Fix typos

Change-Id: I1c1894fcf533291b34a662b6efb96dcfa75b92b3
Reviewed-on: https://gerrit.libreoffice.org/24760Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 498d3d9c
......@@ -183,7 +183,7 @@ private:
virtual sal_Bool SAL_CALL rowDeleted() throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference< css::uno::XInterface > SAL_CALL getStatement() throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
// conatiner::XChild
// container::XChild
virtual css::uno::Reference< css::uno::XInterface > SAL_CALL getParent( ) throw (css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setParent( const css::uno::Reference< css::uno::XInterface >& Parent ) throw (css::lang::NoSupportException, css::uno::RuntimeException, std::exception) override;
......
......@@ -444,7 +444,7 @@ public:
LinguMgrExitLstnr::LinguMgrExitLstnr()
{
// add object to frame::Desktop EventListeners in order to properly call
// the AtExit function at appliction exit.
// the AtExit function at application exit.
uno::Reference< XComponentContext > xContext = getProcessComponentContext();
xDesktop = Desktop::create( xContext );
......
......@@ -218,16 +218,16 @@ void CGM::ImplDoClass9()
{
switch ( mnElementID )
{
case 0x01 : /*Pixel Array */break; // NS
case 0x02 : /*Create Bitmap */break; // NS
case 0x03 : /*Delete Bitmap */break; // NS
case 0x04 : /*Select Drawing Bitmap */break; // NS
case 0x05 : /*Display Bitmap */break; // NS
case 0x01 : /*Pixel Array */break; // NS
case 0x02 : /*Create Bitmap */break; // NS
case 0x03 : /*Delete Bitmap */break; // NS
case 0x04 : /*Select Drawing Bitmap */break; // NS
case 0x05 : /*Display Bitmap */break; // NS
case 0x06 : /*Drawing Mode */break;
case 0x07 : /*Mapped Bitmap ForeGrnd Color */break; // NS
case 0x08 : /*Fill Bitmap */break; // NS
case 0x09 : /*Two Operand BitBlt */break; // NS
case 0x0a : /*Three Operand BitBlt */break; // NS
case 0x07 : /*Mapped Bitmap ForeGround Color */break; // NS
case 0x08 : /*Fill Bitmap */break; // NS
case 0x09 : /*Two Operand BitBlt */break; // NS
case 0x0a : /*Three Operand BitBlt */break; // NS
default: break;
}
};
......
......@@ -69,7 +69,7 @@ class COMPHELPER_DLLPUBLIC OInterfaceIteratorHelper2
public:
/**
Create an iterator over the elements of the container. The iterator
copies the elements of the conatainer. A change to the container
copies the elements of the container. A change to the container
during the lifetime of an iterator is allowed and does not
affect the iterator-instance. The iterator and the container take cares
themself for concurrent access, no additional guarding is necessary.
......@@ -251,7 +251,7 @@ friend class OInterfaceIteratorHelper2;
SAL_DELETED_FUNCTION;
/*
Duplicate content of the conaitner and release the old one without destroying.
Duplicate content of the container and release the old one without destroying.
The mutex must be locked and the memberbInUse must be true.
*/
void copyAndResetInUse();
......
......@@ -750,7 +750,7 @@ uno::Reference< XDictionary > GetIgnoreAllList()
AppExitListener::AppExitListener()
{
// add object to Desktop EventListeners in order to properly call
// the AtExit function at appliction exit.
// the AtExit function at application exit.
uno::Reference< XComponentContext > xContext( comphelper::getProcessComponentContext() );
try
......
......@@ -311,7 +311,7 @@ public:
* parsed XML DOM tree.
*
* It hides all the libxml2 and C -isms and makes the useage more
* confortable from LO developer point of view.
* comfortable from LO developer point of view.
*
* TODO: move to common code
*/
......
......@@ -159,7 +159,7 @@ public class _XTextComponent extends MultiMethodTest {
String itext = num ? "6" : "insert" ;
log.println("Setting text to : '" + text + "'") ;
oObj.setText(text);
log.println("Iserting text to (0,1) : '" + itext + "'") ;
log.println("Inserting text to (0,1) : '" + itext + "'") ;
oObj.insertText(new Selection(0,1), itext);
log.println("getText() returns: " + oObj.getText());
tRes.tested("insertText()", oObj.getText().equals
......
......@@ -2567,7 +2567,7 @@ void SAL_CALL SlideshowImpl::activate() throw (RuntimeException, std::exception)
if( pDispatcher )
{
// filter all forbbiden slots
// filter all forbidden slots
pDispatcher->SetSlotFilter( SfxSlotFilterState::ENABLED, sizeof(pAllowed) / sizeof(sal_uInt16), pAllowed );
}
......
......@@ -230,7 +230,7 @@ void ORoadmap::implInit(vcl::RenderContext& rRenderContext)
// TODO: if somebody sets a new font from outside (OutputDevice::SetFont), we would have to react
// on this with calculating a new bold font.
// Unfortunately, the OutputDevice does not offer a notify mechanism for a changed font.
// So settings the font from outside is simply a forbidded scenario at the moment
// So settings the font from outside is simply a forbidden scenario at the moment
rRenderContext.EnableMapMode(false);
}
......
......@@ -255,7 +255,7 @@ sal_uInt32 SvParser::GetNextChar()
RTL_TEXTENCODING_SYMBOL == eSrcEnc
)
{
// no convserion shall take place
// no conversion shall take place
c = reinterpret_cast<sal_uChar&>( c1 );
nChars = 1;
}
......
......@@ -464,7 +464,7 @@ protected:
xml::AttributeData aValue;
attrsCnt->getByName(name) >>= aValue;
if (!rValue.isEmpty())
CPPUNIT_ASSERT_EQUAL_MESSAGE("attribtes of cell does not contain expected value", rValue, aValue.Value);
CPPUNIT_ASSERT_EQUAL_MESSAGE("attribute of cell does not contain expected value", rValue, aValue.Value);
return aValue;
}
......
......@@ -853,7 +853,7 @@ DECLARE_OOXMLEXPORT_TEST(testfdo80898, "fdo80898.docx")
DECLARE_OOXMLEXPORT_TEST(testTableCellWithDirectFormatting, "fdo80800.docx")
{
// Issue was Direct Foramatting for non-first Table cells was not getting preserved.
// Issue was Direct Formatting for non-first Table cells was not getting preserved.
xmlDocPtr pXmlDoc = parseExport("word/document.xml");
if (!pXmlDoc)
......
......@@ -492,7 +492,7 @@ SwVbaSelection::TypeParagraph() throw ( uno::RuntimeException, std::exception )
void SAL_CALL
SwVbaSelection::InsertParagraph() throw ( uno::RuntimeException, std::exception )
{
// #FIME: the selection should include the new paragraph.
// #FIXME: the selection should include the new paragraph.
getRange()->InsertParagraph();
}
......
......@@ -24,7 +24,7 @@ implemented. But the list contains implementation proposals for both.
* Mode: FILE
** false: Saves each merged document as an individual file. The file name can
be selected from a database column!
** true: Saves a combined file of concated documents. Each document starts
** true: Saves a combined file of concatenated documents. Each document starts
with a new / reset page style. Depending on the page style this inserts
hidden blank pages
* Mode: PRINTER
......
......@@ -100,7 +100,7 @@ AquaA11yEventListener::notifyEvent( const AccessibleEventObject& aEvent ) throw(
break;
case AccessibleEventId::INVALIDATE_ALL_CHILDREN:
// TODO: depricate or remember all children
// TODO: deprecate or remember all children
break;
case AccessibleEventId::BOUNDRECT_CHANGED:
......
......@@ -615,7 +615,7 @@ Dim lChar As Long, sByte1 As String, sByte2 As String, sByte3 As String
_PercentEncode = psChar
Case Asc(&quot;-&quot;), Asc(&quot;.&quot;), Asc(&quot;_&quot;), Asc(&quot;~&quot;)
_PercentEncode = psChar
Case Asc(&quot;!&quot;), Asc(&quot;$&quot;), Asc(&quot;&amp;&quot;), Asc(&quot;&apos;&quot;), Asc(&quot;(&quot;), Asc(&quot;)&quot;), Asc(&quot;*&quot;), Asc(&quot;+&quot;), Asc(&quot;,&quot;), Asc(&quot;;&quot;), Asc(&quot;=&quot;) &apos; Reserved characters used as delimitors in query strings
Case Asc(&quot;!&quot;), Asc(&quot;$&quot;), Asc(&quot;&amp;&quot;), Asc(&quot;&apos;&quot;), Asc(&quot;(&quot;), Asc(&quot;)&quot;), Asc(&quot;*&quot;), Asc(&quot;+&quot;), Asc(&quot;,&quot;), Asc(&quot;;&quot;), Asc(&quot;=&quot;) &apos; Reserved characters used as delimiters in query strings
_PercentEncode = psChar
Case Asc(&quot; &quot;), Asc(&quot;%&quot;)
_PercentEncode = &quot;%&quot; &amp; Right(&quot;00&quot; &amp; Hex(lChar), 2)
......@@ -851,4 +851,4 @@ Private Function _UTF8Encode(ByVal psChar As String) As String
End Function &apos; _UTF8Encode V1.4.0
</script:module>
\ No newline at end of file
</script:module>
......@@ -268,7 +268,7 @@ class SectionPropertyMap : public PropertyMap
sal_Int32 nDistance,
sal_Int32 nOffsetFrom,
sal_uInt32 nLineWidth);
/// Determintes if conversion of a given floating table is wanted or not.
/// Determines if conversion of a given floating table is wanted or not.
bool FloatingTableConversion(FloatingTableInfo& rInfo);
public:
......
......@@ -1310,7 +1310,7 @@ SvXMLImportContext* XMLEnhancedCustomShapeContext::CreateChildContext( sal_uInt1
{
OUString aLocalName;
const OUString& rValue = xAttrList->getValueByIndex( nAttr );
/* fixme sven, this needs to be chekced! sal_uInt16 nPrefix = */ GetImport().GetNamespaceMap().GetKeyByAttrName( xAttrList->getNameByIndex( nAttr ), &aLocalName );
/* fixme sven, this needs to be checked! sal_uInt16 nPrefix = */ GetImport().GetNamespaceMap().GetKeyByAttrName( xAttrList->getNameByIndex( nAttr ), &aLocalName );
switch( EASGet( aLocalName ) )
{
......@@ -1339,7 +1339,7 @@ SvXMLImportContext* XMLEnhancedCustomShapeContext::CreateChildContext( sal_uInt1
{
OUString aLocalName;
const OUString& rValue = xAttrList->getValueByIndex( nAttr );
/* fixme sven, this needs to be chekced! sal_uInt16 nPrefix = */ GetImport().GetNamespaceMap().GetKeyByAttrName( xAttrList->getNameByIndex( nAttr ), &aLocalName );
/* fixme sven, this needs to be checked! sal_uInt16 nPrefix = */ GetImport().GetNamespaceMap().GetKeyByAttrName( xAttrList->getNameByIndex( nAttr ), &aLocalName );
switch( EASGet( aLocalName ) )
{
case EAS_handle_mirror_vertical :
......
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