[openoffice] branch trunk updated: Graphic was in fact a PNG

2023-01-16 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 c5f55b5b42 Graphic was in fact a PNG
c5f55b5b42 is described below

commit c5f55b5b4215698118b792a5089b8a63ea7fa583
Author: mseidel 
AuthorDate: Mon Jan 16 18:18:00 2023 +0100

Graphic was in fact a PNG
---
 main/xmlscript/test/w3c.jpg | Bin 2028 -> 2849 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/main/xmlscript/test/w3c.jpg b/main/xmlscript/test/w3c.jpg
index c541c20dcd..be4846b3bb 100644
Binary files a/main/xmlscript/test/w3c.jpg and b/main/xmlscript/test/w3c.jpg 
differ



[openoffice] branch AOO42X updated: Graphic was in fact a PNG

2023-01-16 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 2628fa150f Graphic was in fact a PNG
2628fa150f is described below

commit 2628fa150f6aed65595ed59687d2d33bb265ccb7
Author: mseidel 
AuthorDate: Mon Jan 16 18:18:00 2023 +0100

Graphic was in fact a PNG

(cherry picked from commit c5f55b5b4215698118b792a5089b8a63ea7fa583)
---
 main/xmlscript/test/w3c.jpg | Bin 2028 -> 2849 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/main/xmlscript/test/w3c.jpg b/main/xmlscript/test/w3c.jpg
index c541c20dcd..be4846b3bb 100644
Binary files a/main/xmlscript/test/w3c.jpg and b/main/xmlscript/test/w3c.jpg 
differ



[openoffice] branch AOO41X updated: Graphic was in fact a PNG

2023-01-16 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 72f49435cf Graphic was in fact a PNG
72f49435cf is described below

commit 72f49435cfe35d7da90f991bd291a8914b714170
Author: mseidel 
AuthorDate: Mon Jan 16 18:18:00 2023 +0100

Graphic was in fact a PNG

(cherry picked from commit c5f55b5b4215698118b792a5089b8a63ea7fa583)
---
 main/xmlscript/test/w3c.jpg | Bin 2028 -> 2849 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/main/xmlscript/test/w3c.jpg b/main/xmlscript/test/w3c.jpg
index c541c20dcd..be4846b3bb 100644
Binary files a/main/xmlscript/test/w3c.jpg and b/main/xmlscript/test/w3c.jpg 
differ



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

2023-01-16 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 52230ee933 Fixed typos, removed whitespace
52230ee933 is described below

commit 52230ee933e31bb26d753c1599317216f6e3ec57
Author: mseidel 
AuthorDate: Mon Jan 16 23:26:49 2023 +0100

Fixed typos, removed whitespace
---
 main/basegfx/source/polygon/b2dtrapezoid.cxx | 1196 +-
 1 file changed, 598 insertions(+), 598 deletions(-)

diff --git a/main/basegfx/source/polygon/b2dtrapezoid.cxx 
b/main/basegfx/source/polygon/b2dtrapezoid.cxx
index a65b9fa741..3404af0575 100644
--- a/main/basegfx/source/polygon/b2dtrapezoid.cxx
+++ b/main/basegfx/source/polygon/b2dtrapezoid.cxx
@@ -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.
- * 
+ *
  */
 
 
@@ -32,23 +32,23 @@
 
 namespace basegfx
 {
-namespace trapezoidhelper
-{
-
//
-// helper class to hold a simple ege. This is only used for horizontal 
edges
-// currently, thus the YPositions will be equal. I did not create a 
special
-// class for this since holdingthe pointers is more effective and also 
can be
-// used as baseclass for the traversing edges
-   
-class TrDeSimpleEdge
+   namespace trapezoidhelper
+   {
+   
//
+   // helper class to hold a simple edge. This is only used for 
horizontal edges
+   // currently, thus the YPositions will be equal. I did not 
create a special
+   // class for this since holding the pointers is more effective 
and also can be
+   // used as baseclass for the traversing edges
+
+   class TrDeSimpleEdge
{
-protected:
-// pointers to start and end point
+   protected:
+   // pointers to start and end point
const B2DPoint* mpStart;
const B2DPoint* mpEnd;
 
public:
-// constructor
+   // constructor
TrDeSimpleEdge(
const B2DPoint* pStart,
const B2DPoint* pEnd)
@@ -57,35 +57,35 @@ namespace basegfx
{
}
 
-// data read access
+   // data read access
const B2DPoint& getStart() const { return *mpStart; }
const B2DPoint& getEnd() const { return *mpEnd; }
};
 
-
//
-// define vector of simple edges
+   
//
+   // define vector of simple edges
 
-typedef ::std::vector< TrDeSimpleEdge > TrDeSimpleEdges;
+   typedef ::std::vector< TrDeSimpleEdge > TrDeSimpleEdges;
 
-
//
-// helper class for holding a traversing edge. It will always have 
some 
-// distance in YPos. The slope (in a numerically useful form, see 
comments) is
-// hold and used in SortValue to allow sorting traversing edges by Y, 
X and slope
-// (in that order)
+   
//
+   // helper class for holding a traversing edge. It will always 
have some
+   // distance in YPos. The slope (in a numerically useful form, 
see comments) is
+   // hold and used in SortValue to allow sorting traversing edges 
by Y, X and slope
+   // (in that order)
 
-class TrDeEdgeEntry : public TrDeSimpleE

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

2023-01-16 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 afc863d99f Fixed typos, removed whitespace
afc863d99f is described below

commit afc863d99fa813bf773e1ea05007abc40c05f4bb
Author: mseidel 
AuthorDate: Mon Jan 16 23:26:49 2023 +0100

Fixed typos, removed whitespace

(cherry picked from commit 52230ee933e31bb26d753c1599317216f6e3ec57)
---
 main/basegfx/source/polygon/b2dtrapezoid.cxx | 1196 +-
 1 file changed, 598 insertions(+), 598 deletions(-)

diff --git a/main/basegfx/source/polygon/b2dtrapezoid.cxx 
b/main/basegfx/source/polygon/b2dtrapezoid.cxx
index a65b9fa741..3404af0575 100644
--- a/main/basegfx/source/polygon/b2dtrapezoid.cxx
+++ b/main/basegfx/source/polygon/b2dtrapezoid.cxx
@@ -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.
- * 
+ *
  */
 
 
@@ -32,23 +32,23 @@
 
 namespace basegfx
 {
-namespace trapezoidhelper
-{
-
//
-// helper class to hold a simple ege. This is only used for horizontal 
edges
-// currently, thus the YPositions will be equal. I did not create a 
special
-// class for this since holdingthe pointers is more effective and also 
can be
-// used as baseclass for the traversing edges
-   
-class TrDeSimpleEdge
+   namespace trapezoidhelper
+   {
+   
//
+   // helper class to hold a simple edge. This is only used for 
horizontal edges
+   // currently, thus the YPositions will be equal. I did not 
create a special
+   // class for this since holding the pointers is more effective 
and also can be
+   // used as baseclass for the traversing edges
+
+   class TrDeSimpleEdge
{
-protected:
-// pointers to start and end point
+   protected:
+   // pointers to start and end point
const B2DPoint* mpStart;
const B2DPoint* mpEnd;
 
public:
-// constructor
+   // constructor
TrDeSimpleEdge(
const B2DPoint* pStart,
const B2DPoint* pEnd)
@@ -57,35 +57,35 @@ namespace basegfx
{
}
 
-// data read access
+   // data read access
const B2DPoint& getStart() const { return *mpStart; }
const B2DPoint& getEnd() const { return *mpEnd; }
};
 
-
//
-// define vector of simple edges
+   
//
+   // define vector of simple edges
 
-typedef ::std::vector< TrDeSimpleEdge > TrDeSimpleEdges;
+   typedef ::std::vector< TrDeSimpleEdge > TrDeSimpleEdges;
 
-
//
-// helper class for holding a traversing edge. It will always have 
some 
-// distance in YPos. The slope (in a numerically useful form, see 
comments) is
-// hold and used in SortValue to allow sorting traversing edges by Y, 
X and slope
-// (in that order)
+   
//
+   // helper class for holding a traversing edge. It will always 
have some
+   // distance in YPos. The slope (in a numerically useful form, 
see comments) is
+   // hold and used in SortValue to allow sorting traversing edges 
by Y, X and slope
+ 

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

2023-01-16 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 ff86dd9e33 Fixed typos, removed whitespace
ff86dd9e33 is described below

commit ff86dd9e33cb614489a4af30c2a2ae101ee4b673
Author: mseidel 
AuthorDate: Mon Jan 16 23:26:49 2023 +0100

Fixed typos, removed whitespace

(cherry picked from commit 52230ee933e31bb26d753c1599317216f6e3ec57)
---
 main/basegfx/source/polygon/b2dtrapezoid.cxx | 1196 +-
 1 file changed, 598 insertions(+), 598 deletions(-)

diff --git a/main/basegfx/source/polygon/b2dtrapezoid.cxx 
b/main/basegfx/source/polygon/b2dtrapezoid.cxx
index a65b9fa741..3404af0575 100644
--- a/main/basegfx/source/polygon/b2dtrapezoid.cxx
+++ b/main/basegfx/source/polygon/b2dtrapezoid.cxx
@@ -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.
- * 
+ *
  */
 
 
@@ -32,23 +32,23 @@
 
 namespace basegfx
 {
-namespace trapezoidhelper
-{
-
//
-// helper class to hold a simple ege. This is only used for horizontal 
edges
-// currently, thus the YPositions will be equal. I did not create a 
special
-// class for this since holdingthe pointers is more effective and also 
can be
-// used as baseclass for the traversing edges
-   
-class TrDeSimpleEdge
+   namespace trapezoidhelper
+   {
+   
//
+   // helper class to hold a simple edge. This is only used for 
horizontal edges
+   // currently, thus the YPositions will be equal. I did not 
create a special
+   // class for this since holding the pointers is more effective 
and also can be
+   // used as baseclass for the traversing edges
+
+   class TrDeSimpleEdge
{
-protected:
-// pointers to start and end point
+   protected:
+   // pointers to start and end point
const B2DPoint* mpStart;
const B2DPoint* mpEnd;
 
public:
-// constructor
+   // constructor
TrDeSimpleEdge(
const B2DPoint* pStart,
const B2DPoint* pEnd)
@@ -57,35 +57,35 @@ namespace basegfx
{
}
 
-// data read access
+   // data read access
const B2DPoint& getStart() const { return *mpStart; }
const B2DPoint& getEnd() const { return *mpEnd; }
};
 
-
//
-// define vector of simple edges
+   
//
+   // define vector of simple edges
 
-typedef ::std::vector< TrDeSimpleEdge > TrDeSimpleEdges;
+   typedef ::std::vector< TrDeSimpleEdge > TrDeSimpleEdges;
 
-
//
-// helper class for holding a traversing edge. It will always have 
some 
-// distance in YPos. The slope (in a numerically useful form, see 
comments) is
-// hold and used in SortValue to allow sorting traversing edges by Y, 
X and slope
-// (in that order)
+   
//
+   // helper class for holding a traversing edge. It will always 
have some
+   // distance in YPos. The slope (in a numerically useful form, 
see comments) is
+   // hold and used in SortValue to allow sorting traversing edges 
by Y, X and slope
+ 

[openoffice] branch trunk updated: Removed unused graphics

2023-01-16 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 b16bacb2ea Removed unused graphics
b16bacb2ea is described below

commit b16bacb2ea9e2bfd7e04aa536cb6b7b398cab95f
Author: mseidel 
AuthorDate: Tue Jan 17 01:09:12 2023 +0100

Removed unused graphics
---
 main/default_images/sw/res/anchor.png  | Bin 264 -> 0 bytes
 main/default_images/sw/res/danchor.png | Bin 264 -> 0 bytes
 .../classic/classic_images.tar.gz  | Bin 1860527 -> 1860450 
bytes
 main/sw/source/ui/utlui/initui.hrc |  74 ++---
 main/sw/source/ui/utlui/initui.src |   2 -
 5 files changed, 35 insertions(+), 41 deletions(-)

diff --git a/main/default_images/sw/res/anchor.png 
b/main/default_images/sw/res/anchor.png
deleted file mode 100644
index eba7b9c38d..00
Binary files a/main/default_images/sw/res/anchor.png and /dev/null differ
diff --git a/main/default_images/sw/res/danchor.png 
b/main/default_images/sw/res/danchor.png
deleted file mode 100644
index eba7b9c38d..00
Binary files a/main/default_images/sw/res/danchor.png and /dev/null differ
diff --git a/main/ooo_custom_images/classic/classic_images.tar.gz 
b/main/ooo_custom_images/classic/classic_images.tar.gz
index 5475fa3e65..955222bdc9 100644
Binary files a/main/ooo_custom_images/classic/classic_images.tar.gz and 
b/main/ooo_custom_images/classic/classic_images.tar.gz differ
diff --git a/main/sw/source/ui/utlui/initui.hrc 
b/main/sw/source/ui/utlui/initui.hrc
index 1c8937a885..21159991c6 100644
--- a/main/sw/source/ui/utlui/initui.hrc
+++ b/main/sw/source/ui/utlui/initui.hrc
@@ -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.
- * 
+ *
  */
 
 
@@ -24,39 +24,35 @@
 #ifndef _INITUI_HRC
 #define _INITUI_HRC
 
-#define BMP_FRAME_ANCHOR1
-#define BMP_FRAME_DRAG_ANCHOR   2
-
-// lokale Resourcen fuer die Shells:
-#define STR_POSTIT_PAGE 1
-#define STR_POSTIT_AUTHOR   2
-#define STR_CALC_SYNTAX 3
-#define STR_CALC_ZERODIV4
-#define STR_CALC_BRACK  5
-#define STR_CALC_POW6
-#define STR_CALC_VARNFND7
-#define STR_CALC_OVERFLOW   8
-#define STR_CALC_WRONGTIME  9
-#define STR_CALC_DEFAULT   10
-#define STR_CALC_ERROR 11
-#define STR_GETREFFLD_UP   12
-#define STR_GETREFFLD_DOWN 13
-#define STR_ALLPAGE_HEADFOOT   14
-#define STR_TEMPLATE_NONE  15
-#define STR_POSTIT_LINE16
-#define STR_FIELD_FIXED17
-#define STR_TOI18
-#define STR_TOU 19
-#define STR_TOC 20
-#define STR_TOX_ILL 21
-#define STR_TOX_OBJ 22
-#define STR_TOX_TBL 23
-#define STR_TOX_AUTH24
-#define STR_PAGEDESC_NAME  25
-#define STR_PAGEDESC_FIRSTNAME 26
-#define STR_PAGEDESC_FOLLOWNAME27
-#define STR_HYPERLINK_CLICK 28
-#define STR_GETREFFLD_REFITEMNOTFOUND   29
-#define STR_DURATION_FORMAT 30
+// local resources for shells:
+#define STR_POSTIT_PAGE 1
+#define STR_POSTIT_AUTHOR   2
+#define STR_CALC_SYNTAX 3
+#define STR_CALC_ZERODIV4
+#define STR_CALC_BRACK  5
+#define STR_CALC_POW6
+#define STR_CALC_VARNFND7
+#define STR_CALC_OVERFLOW   8
+#define STR_CALC_WRONGTIME