[Libreoffice-commits] core.git: dbaccess/source editeng/source filter/source include/comphelper linguistic/source opencl/inc qadevOOo/tests sd/source svtools/source sw/qa sw/source vcl/osx wizards/source writerfilter/source xmloff/source
Andrea Gelmini
andrea.gelmini at gelma.net
Tue May 10 19:14:00 UTC 2016
dbaccess/source/core/inc/DatabaseDataProvider.hxx | 2 +-
editeng/source/misc/unolingu.cxx | 2 +-
filter/source/graphicfilter/icgm/classx.cxx | 18 +++++++++---------
include/comphelper/interfacecontainer2.hxx | 4 ++--
linguistic/source/misc.cxx | 2 +-
opencl/inc/opencl_device_selection.h | 2 +-
qadevOOo/tests/java/ifc/awt/_XTextComponent.java | 2 +-
sd/source/ui/slideshow/slideshowimpl.cxx | 2 +-
svtools/source/control/roadmap.cxx | 2 +-
svtools/source/svrtf/svparser.cxx | 2 +-
sw/qa/extras/inc/swmodeltestbase.hxx | 2 +-
sw/qa/extras/ooxmlexport/ooxmlexport5.cxx | 2 +-
sw/source/ui/vba/vbaselection.cxx | 2 +-
sw/source/uibase/dbui/README | 2 +-
vcl/osx/a11ylistener.cxx | 2 +-
wizards/source/access2base/Utils.xba | 4 ++--
writerfilter/source/dmapper/PropertyMap.hxx | 2 +-
xmloff/source/draw/ximpcustomshape.cxx | 4 ++--
18 files changed, 29 insertions(+), 29 deletions(-)
New commits:
commit 3742748699cc09b04bff3d7c606f1c7a21427357
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date: Mon May 9 10:18:31 2016 +0200
Fix typos
Change-Id: I1c1894fcf533291b34a662b6efb96dcfa75b92b3
Reviewed-on: https://gerrit.libreoffice.org/24760
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Michael Stahl <mstahl at redhat.com>
diff --git a/dbaccess/source/core/inc/DatabaseDataProvider.hxx b/dbaccess/source/core/inc/DatabaseDataProvider.hxx
index e208ee9..0d99c1a 100644
--- a/dbaccess/source/core/inc/DatabaseDataProvider.hxx
+++ b/dbaccess/source/core/inc/DatabaseDataProvider.hxx
@@ -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;
diff --git a/editeng/source/misc/unolingu.cxx b/editeng/source/misc/unolingu.cxx
index 01ae024..6337edf 100644
--- a/editeng/source/misc/unolingu.cxx
+++ b/editeng/source/misc/unolingu.cxx
@@ -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 );
diff --git a/filter/source/graphicfilter/icgm/classx.cxx b/filter/source/graphicfilter/icgm/classx.cxx
index ce89712..4864f99 100644
--- a/filter/source/graphicfilter/icgm/classx.cxx
+++ b/filter/source/graphicfilter/icgm/classx.cxx
@@ -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;
}
};
diff --git a/include/comphelper/interfacecontainer2.hxx b/include/comphelper/interfacecontainer2.hxx
index fa43fea..e4df46d 100644
--- a/include/comphelper/interfacecontainer2.hxx
+++ b/include/comphelper/interfacecontainer2.hxx
@@ -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();
diff --git a/linguistic/source/misc.cxx b/linguistic/source/misc.cxx
index 1edcdf1..6a1a96c 100644
--- a/linguistic/source/misc.cxx
+++ b/linguistic/source/misc.cxx
@@ -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
diff --git a/opencl/inc/opencl_device_selection.h b/opencl/inc/opencl_device_selection.h
index e2bda73..19b74ab 100644
--- a/opencl/inc/opencl_device_selection.h
+++ b/opencl/inc/opencl_device_selection.h
@@ -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
*/
diff --git a/qadevOOo/tests/java/ifc/awt/_XTextComponent.java b/qadevOOo/tests/java/ifc/awt/_XTextComponent.java
index 27ea668..b22cdbd 100644
--- a/qadevOOo/tests/java/ifc/awt/_XTextComponent.java
+++ b/qadevOOo/tests/java/ifc/awt/_XTextComponent.java
@@ -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
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx
index b45f1f4..b3084b2 100644
--- a/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -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 );
}
diff --git a/svtools/source/control/roadmap.cxx b/svtools/source/control/roadmap.cxx
index 4977c08..ddd625c 100644
--- a/svtools/source/control/roadmap.cxx
+++ b/svtools/source/control/roadmap.cxx
@@ -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);
}
diff --git a/svtools/source/svrtf/svparser.cxx b/svtools/source/svrtf/svparser.cxx
index 1e70b2c..7f350d3 100644
--- a/svtools/source/svrtf/svparser.cxx
+++ b/svtools/source/svrtf/svparser.cxx
@@ -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;
}
diff --git a/sw/qa/extras/inc/swmodeltestbase.hxx b/sw/qa/extras/inc/swmodeltestbase.hxx
index 49421f3..fca647b 100644
--- a/sw/qa/extras/inc/swmodeltestbase.hxx
+++ b/sw/qa/extras/inc/swmodeltestbase.hxx
@@ -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;
}
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
index 384fe51..24bee00 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
@@ -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)
diff --git a/sw/source/ui/vba/vbaselection.cxx b/sw/source/ui/vba/vbaselection.cxx
index c22c688..610ee72 100644
--- a/sw/source/ui/vba/vbaselection.cxx
+++ b/sw/source/ui/vba/vbaselection.cxx
@@ -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();
}
diff --git a/sw/source/uibase/dbui/README b/sw/source/uibase/dbui/README
index c89ecc1..be262b8 100644
--- a/sw/source/uibase/dbui/README
+++ b/sw/source/uibase/dbui/README
@@ -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
diff --git a/vcl/osx/a11ylistener.cxx b/vcl/osx/a11ylistener.cxx
index 630a126..aeefaf6 100644
--- a/vcl/osx/a11ylistener.cxx
+++ b/vcl/osx/a11ylistener.cxx
@@ -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:
diff --git a/wizards/source/access2base/Utils.xba b/wizards/source/access2base/Utils.xba
index cd06457..16f73cd 100644
--- a/wizards/source/access2base/Utils.xba
+++ b/wizards/source/access2base/Utils.xba
@@ -615,7 +615,7 @@ Dim lChar As Long, sByte1 As String, sByte2 As String, sByte3 As String
_PercentEncode = psChar
Case Asc("-"), Asc("."), Asc("_"), Asc("~")
_PercentEncode = psChar
- Case Asc("!"), Asc("$"), Asc("&"), Asc("'"), Asc("("), Asc(")"), Asc("*"), Asc("+"), Asc(","), Asc(";"), Asc("=") ' Reserved characters used as delimitors in query strings
+ Case Asc("!"), Asc("$"), Asc("&"), Asc("'"), Asc("("), Asc(")"), Asc("*"), Asc("+"), Asc(","), Asc(";"), Asc("=") ' Reserved characters used as delimiters in query strings
_PercentEncode = psChar
Case Asc(" "), Asc("%")
_PercentEncode = "%" & Right("00" & Hex(lChar), 2)
@@ -851,4 +851,4 @@ Private Function _UTF8Encode(ByVal psChar As String) As String
End Function ' _UTF8Encode V1.4.0
-</script:module>
\ No newline at end of file
+</script:module>
diff --git a/writerfilter/source/dmapper/PropertyMap.hxx b/writerfilter/source/dmapper/PropertyMap.hxx
index 9dc59c0..53b8f66 100644
--- a/writerfilter/source/dmapper/PropertyMap.hxx
+++ b/writerfilter/source/dmapper/PropertyMap.hxx
@@ -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:
diff --git a/xmloff/source/draw/ximpcustomshape.cxx b/xmloff/source/draw/ximpcustomshape.cxx
index bf76b59..9f482d9 100644
--- a/xmloff/source/draw/ximpcustomshape.cxx
+++ b/xmloff/source/draw/ximpcustomshape.cxx
@@ -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 :
More information about the Libreoffice-commits
mailing list