[openoffice] branch AOO42X updated: Fixed typos, removed whitespace

2023-08-01 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
 new 17e0665f00 Fixed typos, removed whitespace
17e0665f00 is described below

commit 17e0665f005ea14aefd8c501e948471f1006b182
Author: mseidel 
AuthorDate: Tue Aug 1 23:45:58 2023 +0200

Fixed typos, removed whitespace

(cherry picked from commit 99989fd556ef1be0ef27482f4b43a2a132e549c0)
---
 main/vcl/inc/vcl/bitmap.hxx   | 108 +-
 main/vcl/inc/vcl/bitmapex.hxx |  80 ---
 main/vcl/inc/vcl/btndlg.hxx   |  22 +
 main/vcl/inc/vcl/button.hxx   |  23 -
 4 files changed, 120 insertions(+), 113 deletions(-)

diff --git a/main/vcl/inc/vcl/bitmap.hxx b/main/vcl/inc/vcl/bitmap.hxx
index 19dcadb418..fe64222969 100644
--- a/main/vcl/inc/vcl/bitmap.hxx
+++ b/main/vcl/inc/vcl/bitmap.hxx
@@ -1,5 +1,5 @@
 /**
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  */
 
 
@@ -62,7 +62,7 @@ typedef policy<
 #define BMP_SCALE_BOX   0x0007UL
 
 // new default assigns for having slots for best quality and
-// an alternative with a good compromize between speed and quality.
+// an alternative with a good compromise between speed and quality.
 // Currently BMP_SCALE_BESTQUALITY maps to BMP_SCALE_LANCZOS and
 // BMP_SCALE_FASTESTINTERPOLATE to BMP_SCALE_SUPER
 #define BMP_SCALE_BESTQUALITY   0x00feUL
@@ -258,10 +258,10 @@ public:
 Lanczos3Kernel( void) {}
 
 virtual double GetWidth() const
-{ 
-return 3.0; 
+{
+return 3.0;
 }
-
+
 virtual double Calculate(double x) const
 {
 return (-3.0 <= x && 3.0 > x) ? SincFilter(x) * SincFilter( x / 3.0 ) 
: 0.0;
@@ -279,16 +279,16 @@ public:
 }
 };
 
-class BicubicKernel : public Kernel 
+class BicubicKernel : public Kernel
 {
 public:
 BicubicKernel( void) {}
 
 virtual double GetWidth() const
-{ 
-return 2.0; 
+{
+return 2.0;
 }
-
+
 virtual double Calculate(double x) const
 {
 if(0.0 > x)
@@ -309,14 +309,14 @@ public:
 }
 };
 
-class BilinearKernel : public Kernel 
+class BilinearKernel : public Kernel
 {
 public:
 BilinearKernel( void) {}
 
 virtual double GetWidth() const
-{ 
-return 1.0; 
+{
+return 1.0;
 }
 
 virtual double Calculate(double x) const
@@ -330,19 +330,19 @@ public:
 {
 return 1.0 - x;
 }
-
+
 return 0.0;
 }
 };
 
-class BoxKernel : public Kernel 
+class BoxKernel : public Kernel
 {
 public:
 BoxKernel( void) {}
 
 virtual double GetWidth() const
-{ 
-return 0.5; 
+{
+return 0.5;
 }
 
 virtual double Calculate(double x) const
@@ -420,10 +420,10 @@ public:
SAL_DLLPRIVATE sal_Bool 
ImplReduceSimple( sal_uInt16 nColorCount );
SAL_DLLPRIVATE sal_Bool 
ImplReducePopular( sal_uInt16 nColorCount );
SAL_DLLPRIVATE sal_Bool 
ImplReduceMedian( sal_uInt16 nColorCount );
-   SAL_DLLPRIVATE void ImplMedianCut( 
sal_uLong* pColBuf, BitmapPalette& rPal, 
+   SAL_DLLPRIVATE void ImplMedianCut( 
sal_uLong* pColBuf, BitmapPalette& rPal,

   long nR1, long nR2, long nG1, long nG2, long nB1, long nB2,

   long nColors, long nPixels, long& rIndex );
-   SAL_DLLPRIVATE sal_Bool ImplConvolute3( 
const long* pMatrix, long nDivisor, 
+   SAL_DLLPRIVATE sal_Bool ImplConvolute3( 
const long* pMatrix, long nDivisor,

const 

[openoffice] branch trunk updated: Fixed typos, removed whitespace

2023-08-01 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
 new 99989fd556 Fixed typos, removed whitespace
99989fd556 is described below

commit 99989fd556ef1be0ef27482f4b43a2a132e549c0
Author: mseidel 
AuthorDate: Tue Aug 1 23:45:58 2023 +0200

Fixed typos, removed whitespace
---
 main/vcl/inc/vcl/bitmap.hxx   | 108 +-
 main/vcl/inc/vcl/bitmapex.hxx |  80 ---
 main/vcl/inc/vcl/btndlg.hxx   |  22 +
 main/vcl/inc/vcl/button.hxx   |  23 -
 4 files changed, 120 insertions(+), 113 deletions(-)

diff --git a/main/vcl/inc/vcl/bitmap.hxx b/main/vcl/inc/vcl/bitmap.hxx
index 19dcadb418..fe64222969 100644
--- a/main/vcl/inc/vcl/bitmap.hxx
+++ b/main/vcl/inc/vcl/bitmap.hxx
@@ -1,5 +1,5 @@
 /**
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  */
 
 
@@ -62,7 +62,7 @@ typedef policy<
 #define BMP_SCALE_BOX   0x0007UL
 
 // new default assigns for having slots for best quality and
-// an alternative with a good compromize between speed and quality.
+// an alternative with a good compromise between speed and quality.
 // Currently BMP_SCALE_BESTQUALITY maps to BMP_SCALE_LANCZOS and
 // BMP_SCALE_FASTESTINTERPOLATE to BMP_SCALE_SUPER
 #define BMP_SCALE_BESTQUALITY   0x00feUL
@@ -258,10 +258,10 @@ public:
 Lanczos3Kernel( void) {}
 
 virtual double GetWidth() const
-{ 
-return 3.0; 
+{
+return 3.0;
 }
-
+
 virtual double Calculate(double x) const
 {
 return (-3.0 <= x && 3.0 > x) ? SincFilter(x) * SincFilter( x / 3.0 ) 
: 0.0;
@@ -279,16 +279,16 @@ public:
 }
 };
 
-class BicubicKernel : public Kernel 
+class BicubicKernel : public Kernel
 {
 public:
 BicubicKernel( void) {}
 
 virtual double GetWidth() const
-{ 
-return 2.0; 
+{
+return 2.0;
 }
-
+
 virtual double Calculate(double x) const
 {
 if(0.0 > x)
@@ -309,14 +309,14 @@ public:
 }
 };
 
-class BilinearKernel : public Kernel 
+class BilinearKernel : public Kernel
 {
 public:
 BilinearKernel( void) {}
 
 virtual double GetWidth() const
-{ 
-return 1.0; 
+{
+return 1.0;
 }
 
 virtual double Calculate(double x) const
@@ -330,19 +330,19 @@ public:
 {
 return 1.0 - x;
 }
-
+
 return 0.0;
 }
 };
 
-class BoxKernel : public Kernel 
+class BoxKernel : public Kernel
 {
 public:
 BoxKernel( void) {}
 
 virtual double GetWidth() const
-{ 
-return 0.5; 
+{
+return 0.5;
 }
 
 virtual double Calculate(double x) const
@@ -420,10 +420,10 @@ public:
SAL_DLLPRIVATE sal_Bool 
ImplReduceSimple( sal_uInt16 nColorCount );
SAL_DLLPRIVATE sal_Bool 
ImplReducePopular( sal_uInt16 nColorCount );
SAL_DLLPRIVATE sal_Bool 
ImplReduceMedian( sal_uInt16 nColorCount );
-   SAL_DLLPRIVATE void ImplMedianCut( 
sal_uLong* pColBuf, BitmapPalette& rPal, 
+   SAL_DLLPRIVATE void ImplMedianCut( 
sal_uLong* pColBuf, BitmapPalette& rPal,

   long nR1, long nR2, long nG1, long nG2, long nB1, long nB2,

   long nColors, long nPixels, long& rIndex );
-   SAL_DLLPRIVATE sal_Bool ImplConvolute3( 
const long* pMatrix, long nDivisor, 
+   SAL_DLLPRIVATE sal_Bool ImplConvolute3( 
const long* pMatrix, long nDivisor,

const BmpFilterParam* pFilterParam, const Link* pProgress );
SAL_DLLPRIVATE 

[openoffice] branch AOO41X updated: Updated English dictionary

2023-08-01 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO41X by this push:
 new 4f8466a3a8 Updated English dictionary
4f8466a3a8 is described below

commit 4f8466a3a82d951d9e4df7aaa0941a8a394a353a
Author: mseidel 
AuthorDate: Tue Aug 1 11:22:48 2023 +0200

Updated English dictionary
---
 main/extensions.lst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/extensions.lst b/main/extensions.lst
index 8985f4d8d9..0c8de03d62 100644
--- a/main/extensions.lst
+++ b/main/extensions.lst
@@ -39,7 +39,7 @@
 
 # English dictionary
 [ language=en.* || language=de || language=it ]
-4910a0f05c97e98e8ef63a53b1cc1997 
https://sourceforge.net/projects/aoo-extensions/files/17102/91/dict-en-20230701_aoo.oxt/download
 "dict-en.oxt"
+3be983c0def12d91650c7e812de5a89f 
https://sourceforge.net/projects/aoo-extensions/files/17102/92/dict-en-20230801_aoo.oxt/download
 "dict-en.oxt"
 
 # English (USA, en_US) dictionary
 [ language==nl || language==ru ]



[openoffice] branch AOO42X updated: Updated English dictionary

2023-08-01 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
 new c89a28af59 Updated English dictionary
c89a28af59 is described below

commit c89a28af59ce09be773edfae1325763d960691e5
Author: mseidel 
AuthorDate: Tue Aug 1 11:19:02 2023 +0200

Updated English dictionary

(cherry picked from commit c744b3fd82a8c1e8cd63f60f6038a37cfaeb8f57)
---
 main/extensions.lst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/extensions.lst b/main/extensions.lst
index c366c87e29..70218b7125 100644
--- a/main/extensions.lst
+++ b/main/extensions.lst
@@ -72,7 +72,7 @@
 
 # English (en_AU, en_CA, en_GB, en_US, en_ZA) dictionary
 [ language=en.* || language=de || language=it ]
-   4910a0f05c97e98e8ef63a53b1cc1997 
https://sourceforge.net/projects/aoo-extensions/files/17102/91/dict-en-20230701_aoo.oxt/download
 "dict-en.oxt"
+   3be983c0def12d91650c7e812de5a89f 
https://sourceforge.net/projects/aoo-extensions/files/17102/92/dict-en-20230801_aoo.oxt/download
 "dict-en.oxt"
 
 # English (USA, en_US) dictionary
 [ language==nl || language==ru ]



[openoffice] branch trunk updated: Updated English dictionary

2023-08-01 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
 new c744b3fd82 Updated English dictionary
c744b3fd82 is described below

commit c744b3fd82a8c1e8cd63f60f6038a37cfaeb8f57
Author: mseidel 
AuthorDate: Tue Aug 1 11:19:02 2023 +0200

Updated English dictionary
---
 main/extensions.lst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/extensions.lst b/main/extensions.lst
index c366c87e29..70218b7125 100644
--- a/main/extensions.lst
+++ b/main/extensions.lst
@@ -72,7 +72,7 @@
 
 # English (en_AU, en_CA, en_GB, en_US, en_ZA) dictionary
 [ language=en.* || language=de || language=it ]
-   4910a0f05c97e98e8ef63a53b1cc1997 
https://sourceforge.net/projects/aoo-extensions/files/17102/91/dict-en-20230701_aoo.oxt/download
 "dict-en.oxt"
+   3be983c0def12d91650c7e812de5a89f 
https://sourceforge.net/projects/aoo-extensions/files/17102/92/dict-en-20230801_aoo.oxt/download
 "dict-en.oxt"
 
 # English (USA, en_US) dictionary
 [ language==nl || language==ru ]