Fix typos
Change-Id: Ic1fb0ea483954f2994a87e05f33b320da3795227
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142661
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
diff --git a/drawinglayer/source/tools/converters.cxx b/drawinglayer/source/tools/converters.cxx
index 332d91d..56d5d8a 100644
--- a/drawinglayer/source/tools/converters.cxx
+++ b/drawinglayer/source/tools/converters.cxx
@@ -151,7 +151,7 @@ BitmapEx convertToBitmapEx(drawinglayer::primitive2d::Primitive2DContainer&& rSe
const Size aSizePixel(nDiscreteWidth, nDiscreteHeight);
// Create target VirtualDevice. Go back to using a simple RGB
// target version (comared with former version, see history).
// target version (compared with former version, see history).
// Reasons are manyfold:
// - Avoid the RGBA mode for VirtualDevice (two VDevs)
// - It's not suggested to be used outside presentation engine
@@ -163,13 +163,13 @@ BitmapEx convertToBitmapEx(drawinglayer::primitive2d::Primitive2DContainer&& rSe
// than the VCL-based ones) will probably not support splitted
// VDevs for content/alpha, so require a method that works with
// RGB targeting (for now)
// - Less ressource usage, better speed (no 2 VDevs, no merge of
// - Less resource usage, better speed (no 2 VDevs, no merge of
// AlphaChannels)
// As long as not all our mechanisms are changed to RGBA completely,
// mixing these is just too dangerous and expensive and may to wrong
// or deliver bad quality results.
// Nonetheless we need a RGBA result here. Luckily we are able to
// create a copmplete and valid AlphaChannel using 'createAlphaMask'
// create a complete and valid AlphaChannel using 'createAlphaMask'
// above.
// When we know the content (RGB result from renderer), alpha
// (result from createAlphaMask) and the start condition (content
@@ -181,7 +181,7 @@ BitmapEx convertToBitmapEx(drawinglayer::primitive2d::Primitive2DContainer&& rSe
// any other rendering. It could be further optimized, too.
// This gives good results, it is in principle comparable with
// the results using pre-multiplied alpha tooling, also reducing
// the range of values where high alpha vlaues are used.
// the range of values where high alpha values are used.
ScopedVclPtrInstance< VirtualDevice > pContent(*Application::GetDefaultDevice());
// prepare vdev
diff --git a/qadevOOo/tests/java/ifc/ucb/_XCachedContentResultSetFactory.java b/qadevOOo/tests/java/ifc/ucb/_XCachedContentResultSetFactory.java
index d3174d9..a6dc5da 100644
--- a/qadevOOo/tests/java/ifc/ucb/_XCachedContentResultSetFactory.java
+++ b/qadevOOo/tests/java/ifc/ucb/_XCachedContentResultSetFactory.java
@@ -67,7 +67,7 @@ public class _XCachedContentResultSetFactory extends MultiMethodTest {
/**
* Creates result set from result set stub. After that number
* of rows from result set created and its stub are retrieved
* using their static representations and comared. <p>
* using their static representations and compared. <p>
* Has <b>OK</b> status if numbers of rows are equal and they are
* greater than 0 (because JAR file contains at least one entry).
*/
diff --git a/qadevOOo/tests/java/ifc/ucb/_XCachedContentResultSetStubFactory.java b/qadevOOo/tests/java/ifc/ucb/_XCachedContentResultSetStubFactory.java
index 90f3d46..afc6ce7 100644
--- a/qadevOOo/tests/java/ifc/ucb/_XCachedContentResultSetStubFactory.java
+++ b/qadevOOo/tests/java/ifc/ucb/_XCachedContentResultSetStubFactory.java
@@ -65,7 +65,7 @@ public class _XCachedContentResultSetStubFactory extends MultiMethodTest {
/**
* Creates cached result set stub from static result set. After that number
* of rows in cached result set created and its source set are retrieved
* and comared. <p>
* and compared. <p>
* Has <b>OK</b> status if numbers of rows are equal and they are
* greater than 0 (because JAR file contains at least one entry).
*/
diff --git a/qadevOOo/tests/java/ifc/ucb/_XCachedDynamicResultSetFactory.java b/qadevOOo/tests/java/ifc/ucb/_XCachedDynamicResultSetFactory.java
index 06dc497..6ac0814 100644
--- a/qadevOOo/tests/java/ifc/ucb/_XCachedDynamicResultSetFactory.java
+++ b/qadevOOo/tests/java/ifc/ucb/_XCachedDynamicResultSetFactory.java
@@ -68,7 +68,7 @@ public class _XCachedDynamicResultSetFactory extends MultiMethodTest {
/**
* Creates result set from result set stub. After that number
* of rows from result set created and its stub are retrieved
* using their static representations and comared. <p>
* using their static representations and compared. <p>
* Has <b>OK</b> status if numbers of rows are equal and they are
* greater than 0 (because JAR file contains at least one entry).
*/
diff --git a/tools/source/generic/b3dtrans.cxx b/tools/source/generic/b3dtrans.cxx
index 0215610..0cae750 100644
--- a/tools/source/generic/b3dtrans.cxx
+++ b/tools/source/generic/b3dtrans.cxx
@@ -252,7 +252,7 @@ void B3dTransformationSet::CalcViewport()
// #i36281#
// OpenGL needs a little more rough additional size to not let
// the front face vanish. Changed from SMALL_DVALUE to 0.000001,
// which is 1/10000th, comared with 1/tenth of a million from SMALL_DVALUE.
// which is 1/10000th, compared with 1/tenth of a million from SMALL_DVALUE.
const double fDistPart((gfFarBound - gfNearBound) * 0.0001);
// To avoid critical clipping, set Near & Far generously
diff --git a/vcl/source/bitmap/bitmap.cxx b/vcl/source/bitmap/bitmap.cxx
index 11e58e2..a92c4a4 100644
--- a/vcl/source/bitmap/bitmap.cxx
+++ b/vcl/source/bitmap/bitmap.cxx
@@ -1765,7 +1765,7 @@ void Bitmap::RemoveBlendedStartColor(
// get alpha value
const sal_uInt8 nAlpha8(pAlphaAcc->GetColor(y, x).GetRed());
// not or completely transparent, no adaption needed
// not or completely transparent, no adaptation needed
if(0 == nAlpha8 || 255 == nAlpha8)
continue;