summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-29 13:05:45 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-01-29 13:26:15 +0100
commitc101df217121043e578695aef05d940e5fe018b9 (patch)
treef26d1920df3cd47bf58e2655d6d6216c34ed8030
parent8f9941d5edcc834d53df0e2bf36231a1bae67ddc (diff)
Fix typos
Change-Id: Iedd82d035454c940d76a94c7e910c81827c1389c Reviewed-on: https://gerrit.libreoffice.org/48828 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--compilerplugins/clang/stringconstant.cxx6
-rw-r--r--connectivity/source/drivers/hsqldb/HView.cxx2
-rw-r--r--connectivity/source/drivers/odbc/OFunctions.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx2
-rw-r--r--drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx2
-rw-r--r--oox/source/ole/axbinaryreader.cxx2
-rw-r--r--postprocess/qa/services.cxx2
-rw-r--r--sc/source/filter/excel/excform.cxx2
-rw-r--r--sd/source/ui/inc/Window.hxx2
-rw-r--r--slideshow/source/inc/usereventqueue.hxx2
-rw-r--r--wizards/com/sun/star/wizards/ui/event/DataAware.py2
-rw-r--r--writerfilter/source/dmapper/GraphicImport.cxx4
12 files changed, 15 insertions, 15 deletions
diff --git a/compilerplugins/clang/stringconstant.cxx b/compilerplugins/clang/stringconstant.cxx
index 8eb482accc91..0555b20af24a 100644
--- a/compilerplugins/clang/stringconstant.cxx
+++ b/compilerplugins/clang/stringconstant.cxx
@@ -1029,7 +1029,7 @@ bool StringConstant::VisitCXXConstructExpr(CXXConstructExpr const * expr) {
{
report(
DiagnosticsEngine::Warning,
- ("call of '%0' with suspicous construction"
+ ("call of '%0' with suspicious construction"
" of %1 with empty string constant"
" argument"),
getMemberLocation(call))
@@ -1510,7 +1510,7 @@ void StringConstant::reportChange(
{
report(
DiagnosticsEngine::Warning,
- ("call of '%0' with suspicous call of %1 with"
+ ("call of '%0' with suspicious call of %1 with"
" empty string constant argument"),
getMemberLocation(call))
<< fdecl->getQualifiedNameAsString() << original
@@ -1643,7 +1643,7 @@ void StringConstant::checkEmpty(
case TreatEmpty::Error:
report(
DiagnosticsEngine::Warning,
- "call of '%0' with suspicous empty string constant argument",
+ "call of '%0' with suspicious empty string constant argument",
getMemberLocation(expr))
<< callee->getQualifiedNameAsString() << expr->getSourceRange();
break;
diff --git a/connectivity/source/drivers/hsqldb/HView.cxx b/connectivity/source/drivers/hsqldb/HView.cxx
index b54b48cfb204..3a5fcb0cf394 100644
--- a/connectivity/source/drivers/hsqldb/HView.cxx
+++ b/connectivity/source/drivers/hsqldb/HView.cxx
@@ -76,7 +76,7 @@ namespace connectivity { namespace hsqldb
// in HSQL, we need to do it this way ...
//
// I can imagine scenarios where this fails, e.g. when dropping the view
- // succeedes, re-creating it fails, some other thread alters a table which
+ // succeeds, re-creating it fails, some other thread alters a table which
// the view was based on, and then we try to restore the view with the
// original command, which then fails, too.
//
diff --git a/connectivity/source/drivers/odbc/OFunctions.cxx b/connectivity/source/drivers/odbc/OFunctions.cxx
index cb04f307424c..9e546e389208 100644
--- a/connectivity/source/drivers/odbc/OFunctions.cxx
+++ b/connectivity/source/drivers/odbc/OFunctions.cxx
@@ -81,7 +81,7 @@ T3SQLNativeSql pODBC3SQLNativeSql;
bool LoadFunctions(oslModule pODBCso);
-// Take care of Dynamicly loading of the DLL/shared lib and Addresses:
+// Take care of Dynamically loading of the DLL/shared lib and Addresses:
// Returns sal_True at success
bool LoadLibrary_ODBC3(OUString &_rPath)
{
diff --git a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
index 529fd8692e9a..928ac82ff81d 100644
--- a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
+++ b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
@@ -384,7 +384,7 @@ void ProgressCmdEnv::handle( uno::Reference< task::XInteractionRequest > const &
{
SolarMutexGuard guard;
short n = ScopedVclPtrInstance<DependencyDialog>( m_pDialogHelper? m_pDialogHelper->getWindow() : nullptr, deps )->Execute();
- // Distinguish between closing the dialog and programatically
+ // Distinguish between closing the dialog and programmatically
// canceling the dialog (headless VCL):
approve = n == RET_OK
|| (n == RET_CANCEL && !Application::IsDialogCancelEnabled());
diff --git a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
index 72710f9fbf84..c36606c0986c 100644
--- a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
@@ -2024,7 +2024,7 @@ namespace drawinglayer
aViewTransform.scale(fDPIXChange, fDPIYChange);
}
- // also take scaling from Size reduction into acount
+ // also take scaling from Size reduction into account
if(!basegfx::fTools::equal(fReduceFactor, 1.0))
{
aViewTransform.scale(fReduceFactor, fReduceFactor);
diff --git a/oox/source/ole/axbinaryreader.cxx b/oox/source/ole/axbinaryreader.cxx
index 5a1ae682df11..14ed7f382d9d 100644
--- a/oox/source/ole/axbinaryreader.cxx
+++ b/oox/source/ole/axbinaryreader.cxx
@@ -149,7 +149,7 @@ bool AxBinaryPropertyReader::ArrayStringProperty::readProperty( AxAlignedInputSt
if( !lclReadString( rInStrm, aString, rInStrm.readuInt32(), true ) )
return false;
mrArray.push_back( aString );
- // every array string is aligned on 4 byte boundries
+ // every array string is aligned on 4 byte boundaries
rInStrm.align( 4 );
}
return true;
diff --git a/postprocess/qa/services.cxx b/postprocess/qa/services.cxx
index 0ab677339d9d..27fed5779e93 100644
--- a/postprocess/qa/services.cxx
+++ b/postprocess/qa/services.cxx
@@ -11,7 +11,7 @@
// implementations reachable via the service manager. If a given implementation
// is the only implementor of some service that has a zero-parameter
// constructor, instantiate the implementation through that service name. If a
-// given implementation does not offer any such contructors (because it does not
+// given implementation does not offer any such constructors (because it does not
// support any single-interface--based service, or because for each relevant
// service there are multiple implementations or it does not have an appropriate
// constructor) but does support at least one accumulation-based service, then
diff --git a/sc/source/filter/excel/excform.cxx b/sc/source/filter/excel/excform.cxx
index 29c94d2c5f3a..aa1b71f2f546 100644
--- a/sc/source/filter/excel/excform.cxx
+++ b/sc/source/filter/excel/excform.cxx
@@ -1117,7 +1117,7 @@ ConvErr ExcelToSc::Convert( ScRangeListTabs& rRangeList, XclImpStream& aIn, std:
break;
case 0x4B:
case 0x6B:
- case 0x2B: // Deleted Area Refernece [323 273]
+ case 0x2B: // Deleted Area Reference [323 273]
nIgnore = 6;
break;
case 0x4C:
diff --git a/sd/source/ui/inc/Window.hxx b/sd/source/ui/inc/Window.hxx
index 0d47a487035e..487255ae8c40 100644
--- a/sd/source/ui/inc/Window.hxx
+++ b/sd/source/ui/inc/Window.hxx
@@ -91,7 +91,7 @@ public:
/** Calculate the minimal zoom factor as the value at which the
application area would completely fill the window. All values set
- manually or programatically are set to this value if they are
+ manually or programmatically are set to this value if they are
smaller. If the currently used zoom factor is smaller than the minimal zoom
factor than set the minimal zoom factor as the new current zoom
factor.
diff --git a/slideshow/source/inc/usereventqueue.hxx b/slideshow/source/inc/usereventqueue.hxx
index 88e89d0f7326..a60a931b473b 100644
--- a/slideshow/source/inc/usereventqueue.hxx
+++ b/slideshow/source/inc/usereventqueue.hxx
@@ -217,7 +217,7 @@ public:
/** Typically skipping the current effect is triggered by mouse clicks
or key presses that trigger the next effect. This method allows the
- skipping of effects to be triggered programatically.
+ skipping of effects to be triggered programmatically.
*/
void callSkipEffectEventHandler();
diff --git a/wizards/com/sun/star/wizards/ui/event/DataAware.py b/wizards/com/sun/star/wizards/ui/event/DataAware.py
index ac121029e38c..ce97ebc96f41 100644
--- a/wizards/com/sun/star/wizards/ui/event/DataAware.py
+++ b/wizards/com/sun/star/wizards/ui/event/DataAware.py
@@ -31,7 +31,7 @@ This class, as a base abstract class, sets a frame of functionality,
delegating the data Object get/set methods to a Value object,
and leaving the UI get/set methods abstract.
Note that event listening is *not* a part of this model.
-the updateData() or updateUI() methods should be programatically called.
+the updateData() or updateUI() methods should be programmatically called.
in child classes, the updateData() will be binded to UI event calls.
<br><br>
This class holds references to a Data Object and a Value object.
diff --git a/writerfilter/source/dmapper/GraphicImport.cxx b/writerfilter/source/dmapper/GraphicImport.cxx
index 56eac22866a2..295e3f1a8164 100644
--- a/writerfilter/source/dmapper/GraphicImport.cxx
+++ b/writerfilter/source/dmapper/GraphicImport.cxx
@@ -1022,7 +1022,7 @@ void GraphicImport::lcl_sprm(Sprm& rSprm)
break;
case NS_ooxml::LN_CT_Anchor_positionH: // 90976;
{
- // Use a special handler for the positionning
+ // Use a special handler for the positioning
PositionHandlerPtr pHandler( new PositionHandler( m_pImpl->m_rPositionOffsets, m_pImpl->m_rAligns ));
writerfilter::Reference<Properties>::Pointer_t pProperties = rSprm.getProps();
if( pProperties.get( ) )
@@ -1048,7 +1048,7 @@ void GraphicImport::lcl_sprm(Sprm& rSprm)
break;
case NS_ooxml::LN_CT_Anchor_positionV: // 90977;
{
- // Use a special handler for the positionning
+ // Use a special handler for the positioning
PositionHandlerPtr pHandler( new PositionHandler( m_pImpl->m_rPositionOffsets, m_pImpl->m_rAligns));
writerfilter::Reference<Properties>::Pointer_t pProperties = rSprm.getProps();
if( pProperties.get( ) )