diff options
-rw-r--r-- | solenv/bin/concat-deps.c | 2 | ||||
-rw-r--r-- | solenv/bin/modules/installer/epmfile.pm | 2 | ||||
-rwxr-xr-x | solenv/bin/ooinstall | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svggnode.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svggradientnode.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgstyleattributes.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgtitledescnode.cxx | 2 | ||||
-rw-r--r-- | svl/qa/unit/svl.cxx | 2 | ||||
-rw-r--r-- | svtools/source/control/tabbar.cxx | 2 | ||||
-rw-r--r-- | svtools/source/misc/transfer.cxx | 4 | ||||
-rw-r--r-- | svtools/source/uno/statusbarcontroller.cxx | 4 | ||||
-rw-r--r-- | svtools/source/uno/toolboxcontroller.cxx | 4 | ||||
-rw-r--r-- | svtools/source/uno/unoimap.cxx | 4 | ||||
-rw-r--r-- | svx/source/accessibility/lookupcolorname.cxx | 2 | ||||
-rw-r--r-- | svx/source/inc/tbxform.hxx | 2 | ||||
-rw-r--r-- | svx/source/sdr/contact/objectcontactofobjlistpainter.cxx | 2 | ||||
-rw-r--r-- | svx/source/unodraw/UnoGraphicExporter.cxx | 2 | ||||
-rw-r--r-- | svx/source/unodraw/unoshap2.cxx | 2 |
18 files changed, 22 insertions, 22 deletions
diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c index c63d5a7ae73c..1d6907d26549 100644 --- a/solenv/bin/concat-deps.c +++ b/solenv/bin/concat-deps.c @@ -151,7 +151,7 @@ struct pool int primary; /**< primary allocation in bytes */ int secondary; /**< secondary allocation in bytes */ }; -#define POOL_ALIGN_INCREMENT 8 /**< Alignement, must be a power of 2 and of size > to sizeof(void*) */ +#define POOL_ALIGN_INCREMENT 8 /**< alignment, must be a power of 2 and of size > to sizeof(void*) */ static void* pool_take_extent(struct pool* pool, int allocate) diff --git a/solenv/bin/modules/installer/epmfile.pm b/solenv/bin/modules/installer/epmfile.pm index b7b4bcce1424..0dbc37a92cb9 100644 --- a/solenv/bin/modules/installer/epmfile.pm +++ b/solenv/bin/modules/installer/epmfile.pm @@ -65,7 +65,7 @@ sub read_packagemap { my $packagemapref = installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$onepackagemapname, $includepatharrayref, 0); - if ( $$packagemapref eq "" ) { installer::exiter::exit_program("ERROR: Could not find package map file \"$onepackagemapname\" (propery PACKAGEMAP)!", "read_packagemap"); } + if ( $$packagemapref eq "" ) { installer::exiter::exit_program("ERROR: Could not find package map file \"$onepackagemapname\" (property PACKAGEMAP)!", "read_packagemap"); } my $packagemapcontent = installer::files::read_file($$packagemapref); diff --git a/solenv/bin/ooinstall b/solenv/bin/ooinstall index 8d0f5be27512..83507a7bf647 100755 --- a/solenv/bin/ooinstall +++ b/solenv/bin/ooinstall @@ -80,7 +80,7 @@ if ($is_windows) { # FIXME: a better solution would be to fix installer to deal with broken symlinks # make distro-pack-install shufle with the SDK installation to make it LSB compliant -# it creates symlinks from the orignal path to /usr/share; they are not valid with $DESTDIR +# it creates symlinks from the original path to /usr/share; they are not valid with $DESTDIR # and potential second ooinstall call fails with strange error messages if the old tree is still there if ($destdir && "$ENV{DESTDIR}" ne "/" && -d "$ENV{DESTDIR}") { print "Cleaning destdir...\n"; diff --git a/svgio/source/svgreader/svggnode.cxx b/svgio/source/svgreader/svggnode.cxx index 28c4dd8a0ccc..16849efce2f6 100644 --- a/svgio/source/svgreader/svggnode.cxx +++ b/svgio/source/svgreader/svggnode.cxx @@ -33,7 +33,7 @@ namespace svgio maSvgStyleAttributes(*this), mpaTransform(nullptr) { - OSL_ENSURE(aType == SVGTokenDefs || aType == SVGTokenG, "SvgGNode should ony be used for Group and Defs (!)"); + OSL_ENSURE(aType == SVGTokenDefs || aType == SVGTokenG, "SvgGNode should only be used for Group and Defs (!)"); } SvgGNode::~SvgGNode() diff --git a/svgio/source/svgreader/svggradientnode.cxx b/svgio/source/svgreader/svggradientnode.cxx index 8d700c5247d4..99469edc46ab 100644 --- a/svgio/source/svgreader/svggradientnode.cxx +++ b/svgio/source/svgreader/svggradientnode.cxx @@ -54,7 +54,7 @@ namespace svgio maXLink(), mpXLink(nullptr) { - OSL_ENSURE(aType == SVGTokenLinearGradient || aType == SVGTokenRadialGradient, "SvgGradientNode should ony be used for Linear and Radial gradient (!)"); + OSL_ENSURE(aType == SVGTokenLinearGradient || aType == SVGTokenRadialGradient, "SvgGradientNode should only be used for Linear and Radial gradient (!)"); } SvgGradientNode::~SvgGradientNode() diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx index 8cb6bb5c7eef..b10c90651969 100644 --- a/svgio/source/svgreader/svgstyleattributes.cxx +++ b/svgio/source/svgreader/svgstyleattributes.cxx @@ -697,7 +697,7 @@ namespace svgio } // convert svg:stroke-miterlimit to LineAttrute:mfMiterMinimumAngle - // The default needs to be set explicitely, because svg default <> Draw default + // The default needs to be set explicitly, because svg default <> Draw default double fMiterMinimumAngle; if (getStrokeMiterLimit().isSet()) { diff --git a/svgio/source/svgreader/svgtitledescnode.cxx b/svgio/source/svgreader/svgtitledescnode.cxx index 36b4cd48b250..f5722b616922 100644 --- a/svgio/source/svgreader/svgtitledescnode.cxx +++ b/svgio/source/svgreader/svgtitledescnode.cxx @@ -31,7 +31,7 @@ namespace svgio : SvgNode(aType, rDocument, pParent), maText() { - OSL_ENSURE(aType == SVGTokenTitle || aType == SVGTokenDesc, "SvgTitleDescNode should ony be used for Title and Desc (!)"); + OSL_ENSURE(aType == SVGTokenTitle || aType == SVGTokenDesc, "SvgTitleDescNode should only be used for Title and Desc (!)"); } SvgTitleDescNode::~SvgTitleDescNode() diff --git a/svl/qa/unit/svl.cxx b/svl/qa/unit/svl.cxx index 8e185d561912..8ac1dd722acc 100644 --- a/svl/qa/unit/svl.cxx +++ b/svl/qa/unit/svl.cxx @@ -145,7 +145,7 @@ void Test::testNumberFormat() nullptr }; -// Followings aren't in range of NF_FRACTION_START and NF_FRACTION_END +// Following aren't in range of NF_FRACTION_START and NF_FRACTION_END // see enum NfIndexTableOffset in svl/inc/svl/zforlist.hxx const char* pFractionExt[] = { "# \?\?\?/\?\?\?", diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx index 7ff5d2b0d3ba..3a40a07c1e48 100644 --- a/svtools/source/control/tabbar.cxx +++ b/svtools/source/control/tabbar.cxx @@ -1866,7 +1866,7 @@ void TabBar::SetCurPageId(sal_uInt16 nPageId) if (nPageId == mnCurPageId) return; - // make invalide + // make invalid bool bUpdate = false; if (IsReallyVisible() && IsUpdateMode()) bUpdate = true; diff --git a/svtools/source/misc/transfer.cxx b/svtools/source/misc/transfer.cxx index 3337c2234d46..ce3685604866 100644 --- a/svtools/source/misc/transfer.cxx +++ b/svtools/source/misc/transfer.cxx @@ -667,7 +667,7 @@ bool TransferableHelper::SetBitmapEx( const BitmapEx& rBitmapEx, const DataFlavo { const Bitmap aBitmap(rBitmapEx.GetBitmap()); - // explicitely use Bitmap::Write with bCompressed = sal_False and bFileHeader = sal_True + // explicitly use Bitmap::Write with bCompressed = sal_False and bFileHeader = sal_True WriteDIB(aBitmap, aMemStm, false, true); } @@ -1573,7 +1573,7 @@ bool TransferableDataHelper::GetBitmapEx( const DataFlavor& rFlavor, BitmapEx& r Bitmap aBitmap; AlphaMask aMask; - // explicitely use Bitmap::Read with bFileHeader = sal_True + // explicitly use Bitmap::Read with bFileHeader = sal_True // #i124085# keep DIBV5 for read from clipboard, but should not happen ReadDIBV5(aBitmap, aMask, *xStm); diff --git a/svtools/source/uno/statusbarcontroller.cxx b/svtools/source/uno/statusbarcontroller.cxx index 0b00ac3bdf54..b44e1771ca43 100644 --- a/svtools/source/uno/statusbarcontroller.cxx +++ b/svtools/source/uno/statusbarcontroller.cxx @@ -355,7 +355,7 @@ void StatusbarController::addStatusListener( const OUString& aCommandURL ) return; // Check if we are already initialized. Implementation starts adding itself as status listener when - // intialize is called. + // initialize is called. if ( !m_bInitialized ) { // Put into the unordered_map of status listener. Will be activated when initialized is called @@ -364,7 +364,7 @@ void StatusbarController::addStatusListener( const OUString& aCommandURL ) } else { - // Add status listener directly as intialize has already been called. + // Add status listener directly as initialize has already been called. Reference< XDispatchProvider > xDispatchProvider( m_xFrame, UNO_QUERY ); if ( m_xContext.is() && xDispatchProvider.is() ) { diff --git a/svtools/source/uno/toolboxcontroller.cxx b/svtools/source/uno/toolboxcontroller.cxx index 2a443b50c6b7..4aa9032957af 100644 --- a/svtools/source/uno/toolboxcontroller.cxx +++ b/svtools/source/uno/toolboxcontroller.cxx @@ -390,7 +390,7 @@ void ToolboxController::addStatusListener( const OUString& aCommandURL ) return; // Check if we are already initialized. Implementation starts adding itself as status listener when - // intialize is called. + // initialize is called. if ( !m_bInitialized ) { // Put into the unordered_map of status listener. Will be activated when initialized is called @@ -399,7 +399,7 @@ void ToolboxController::addStatusListener( const OUString& aCommandURL ) } else { - // Add status listener directly as intialize has already been called. + // Add status listener directly as initialize has already been called. Reference< XDispatchProvider > xDispatchProvider( m_xFrame, UNO_QUERY ); if ( m_xContext.is() && xDispatchProvider.is() ) { diff --git a/svtools/source/uno/unoimap.cxx b/svtools/source/uno/unoimap.cxx index e0ffcb82ea85..225881757402 100644 --- a/svtools/source/uno/unoimap.cxx +++ b/svtools/source/uno/unoimap.cxx @@ -82,7 +82,7 @@ public: rtl::Reference<SvMacroTableEventDescriptor> mxEvents; - // overriden helpers from PropertySetHelper + // overridden helpers from PropertySetHelper virtual void _setPropertyValues( const PropertyMapEntry** ppEntries, const Any* pValues ) override; virtual void _getPropertyValues( const PropertyMapEntry** ppEntries, Any* pValue ) override; @@ -397,7 +397,7 @@ OUString SAL_CALL SvUnoImageMapObject::getImplementationName() } } -// overriden helpers from PropertySetHelper +// overridden helpers from PropertySetHelper void SvUnoImageMapObject::_setPropertyValues( const PropertyMapEntry** ppEntries, const Any* pValues ) { bool bOk = false; diff --git a/svx/source/accessibility/lookupcolorname.cxx b/svx/source/accessibility/lookupcolorname.cxx index 06cfee79327b..423eb4345fd9 100644 --- a/svx/source/accessibility/lookupcolorname.cxx +++ b/svx/source/accessibility/lookupcolorname.cxx @@ -70,7 +70,7 @@ ColorNameMap::ColorNameMap() { } catch (css::uno::RuntimeException const&) { - // When an exception occurred then whe have an empty name sequence + // When an exception occurred then we have an empty name sequence // and the loop below is not entered. } diff --git a/svx/source/inc/tbxform.hxx b/svx/source/inc/tbxform.hxx index 369af519a41d..c2dbd43fa912 100644 --- a/svx/source/inc/tbxform.hxx +++ b/svx/source/inc/tbxform.hxx @@ -29,7 +29,7 @@ class SvxFmAbsRecWin : public NumericField { SfxToolBoxControl* m_pController; - // for invalidating our content whe losing the focus + // for invalidating our content when losing the focus public: SvxFmAbsRecWin( vcl::Window* _pParent, SfxToolBoxControl* _pController ); diff --git a/svx/source/sdr/contact/objectcontactofobjlistpainter.cxx b/svx/source/sdr/contact/objectcontactofobjlistpainter.cxx index 0857542c3733..8af2e51a36f2 100644 --- a/svx/source/sdr/contact/objectcontactofobjlistpainter.cxx +++ b/svx/source/sdr/contact/objectcontactofobjlistpainter.cxx @@ -92,7 +92,7 @@ void ObjectContactOfObjListPainter::ProcessDisplay(DisplayInfo& rDisplayInfo) aViewRange.transform(pTargetDevice->GetInverseViewTransformation()); } - // upate local ViewInformation2D + // update local ViewInformation2D const drawinglayer::geometry::ViewInformation2D aNewViewInformation2D( basegfx::B2DHomMatrix(), pTargetDevice->GetViewTransformation(), diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx b/svx/source/unodraw/UnoGraphicExporter.cxx index 58fd9c773561..fb5d9c76f464 100644 --- a/svx/source/unodraw/UnoGraphicExporter.cxx +++ b/svx/source/unodraw/UnoGraphicExporter.cxx @@ -197,7 +197,7 @@ namespace { aRange.expand(basegfx::B2DPoint(aSize100th.Width(), aSize100th.Height())); - // when explicitely pixels are requested from the GraphicExporter, use a *very* high limit + // when explicitly pixels are requested from the GraphicExporter, use a *very* high limit // of 16gb (4096x4096 pixels), else use the default for the converters nMaximumQuadraticPixels = std::min(sal_uInt32(4096 * 4096), sal_uInt32(pSize->Width() * pSize->Height())); } diff --git a/svx/source/unodraw/unoshap2.cxx b/svx/source/unodraw/unoshap2.cxx index dcdcbe683de9..bf964ff653db 100644 --- a/svx/source/unodraw/unoshap2.cxx +++ b/svx/source/unodraw/unoshap2.cxx @@ -1705,7 +1705,7 @@ void SAL_CALL SvxCustomShape::setPropertyValue( const OUString& aPropertyName, c { // Luckily, the object causing problems in tdf#93994 is not the // UNO API object, but the XCustomShapeEngine involved. This - // object is on-demand replacable and can be reset here. This + // object is on-demand replaceable and can be reset here. This // will free the involved EditEngine and VirtualDevice. pTarget->mxCustomShapeEngine.set(nullptr); } |