(openoffice-docs) 02/02: 0314CG41_Custom...2022-02-23.odt Edited by Michele, reviewed by FJCC

2023-11-14 Thread franciscc
This is an automated email from the ASF dual-hosted git repository.

franciscc pushed a commit to branch Calc-Guide
in repository https://gitbox.apache.org/repos/asf/openoffice-docs.git

commit 6fbcf6ce5986f8323f3d4ae2a118e78f6e3c4dcc
Author: Francis 
AuthorDate: Tue Nov 14 16:52:13 2023 -0700

0314CG41_Custom...2022-02-23.odt Edited by Michele, reviewed by FJCC
---
 .../0314CG41-CustomizingCalc_digro_2022-02-23.odt  | Bin 626289 -> 626556 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/Review/0314CG41-CustomizingCalc_digro_2022-02-23.odt 
b/Review/0314CG41-CustomizingCalc_digro_2022-02-23.odt
index 1492cbd..4cd90f1 100644
Binary files a/Review/0314CG41-CustomizingCalc_digro_2022-02-23.odt and 
b/Review/0314CG41-CustomizingCalc_digro_2022-02-23.odt differ



(openoffice-docs) branch Calc-Guide updated (8cab10a -> 6fbcf6c)

2023-11-14 Thread franciscc
This is an automated email from the ASF dual-hosted git repository.

franciscc pushed a change to branch Calc-Guide
in repository https://gitbox.apache.org/repos/asf/openoffice-docs.git


from 8cab10a  0307CG41-Formulas..2022-02-18.odt Edits by Michele reviewed 
by FJCC
 new 55ad4e1  0311CG41-Sharing..2022-02-20.odt Modified by Michele, 
reviewed by fjcc
 new 6fbcf6c  0314CG41_Custom...2022-02-23.odt Edited by Michele, reviewed 
by FJCC

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ...11CG41-SharingAndReviewing_digro_2022-02-20.odt | Bin 348250 -> 355639 bytes
 .../0314CG41-CustomizingCalc_digro_2022-02-23.odt  | Bin 626289 -> 626556 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)



(openoffice-docs) 01/02: 0311CG41-Sharing..2022-02-20.odt Modified by Michele, reviewed by fjcc

2023-11-14 Thread franciscc
This is an automated email from the ASF dual-hosted git repository.

franciscc pushed a commit to branch Calc-Guide
in repository https://gitbox.apache.org/repos/asf/openoffice-docs.git

commit 55ad4e1677e1bafec459a53758cb7397adddac7d
Author: Francis 
AuthorDate: Tue Nov 14 10:45:52 2023 -0700

0311CG41-Sharing..2022-02-20.odt Modified by Michele, reviewed by fjcc

Actual file modified by Michele was 0311CG33-SharingAndReviewing.odt. Fjcc
then accepted her changes and ported in the differences from
0311CG41-SharingAndReviewing_digro_2022-02-20.odt
---
 ...11CG41-SharingAndReviewing_digro_2022-02-20.odt | Bin 348250 -> 355639 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/Review/0311CG41-SharingAndReviewing_digro_2022-02-20.odt 
b/Review/0311CG41-SharingAndReviewing_digro_2022-02-20.odt
index b80999a..3dc4070 100644
Binary files a/Review/0311CG41-SharingAndReviewing_digro_2022-02-20.odt and 
b/Review/0311CG41-SharingAndReviewing_digro_2022-02-20.odt differ



(openoffice) branch AOO41X updated: Do not cache instances of com.sun.star.i18n.Transliteration.l10n

2023-11-14 Thread ardovm
This is an automated email from the ASF dual-hosted git repository.

ardovm 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 5f13fa0070 Do not cache instances of 
com.sun.star.i18n.Transliteration.l10n
5f13fa0070 is described below

commit 5f13fa00702a0abe48858d443bc306f5c5ba26d8
Author: Arrigo Marchiori 
AuthorDate: Sun Feb 19 09:45:46 2023 +0100

Do not cache instances of com.sun.star.i18n.Transliteration.l10n

Such instances may be modified by the callers. If objects are cached,
one caller may see its instance unexpectedly modified by another caller.

This happened with Transliteration_caseignore instances  in bug #126680.

(cherry picked from commit f0439fff86115a6959e104fea345d175528afdf0)
---
 main/i18npool/inc/transliterationImpl.hxx   |  9 -
 .../i18npool/source/transliteration/transliterationImpl.cxx | 13 -
 2 files changed, 22 deletions(-)

diff --git a/main/i18npool/inc/transliterationImpl.hxx 
b/main/i18npool/inc/transliterationImpl.hxx
index 5cd3c7b2bd..74b827b873 100644
--- a/main/i18npool/inc/transliterationImpl.hxx
+++ b/main/i18npool/inc/transliterationImpl.hxx
@@ -121,15 +121,6 @@ private:
 com::sun::star::uno::Reference< XLocaleData > localedata;
 com::sun::star::uno::Reference< 
com::sun::star::i18n::XExtendedTransliteration > caseignore;
 
-/** structure to cache the last transliteration body used. */
-struct TransBody
-{
-::osl::Mutex mutex;
-::rtl::OUString Name;
-::com::sun::star::uno::Reference< 
::com::sun::star::i18n::XExtendedTransliteration > Body;
-};
-static TransBody lastTransBody;
-
 virtual sal_Bool SAL_CALL loadModuleByName( const rtl::OUString& implName, 
 
com::sun::star::uno::Reference 
& body, const com::sun::star::lang::Locale& rLocale) 
 throw(com::sun::star::uno::RuntimeException);
diff --git a/main/i18npool/source/transliteration/transliterationImpl.cxx 
b/main/i18npool/source/transliteration/transliterationImpl.cxx
index 8b68415484..2141fd5859 100644
--- a/main/i18npool/source/transliteration/transliterationImpl.cxx
+++ b/main/i18npool/source/transliteration/transliterationImpl.cxx
@@ -144,8 +144,6 @@ static struct TMlist {
   {(TransliterationModules)0, (TransliterationModulesNew)0,  NULL}
 };
 
-TransliterationImpl::TransBody TransliterationImpl::lastTransBody;
-
 // Constructor/Destructor
 TransliterationImpl::TransliterationImpl(const Reference 
& xMSF) : xSMgr(xMSF)
 {
@@ -591,15 +589,6 @@ TransliterationImpl::clear()
 void TransliterationImpl::loadBody( OUString , 
Reference& body ) 
 throw (RuntimeException)
 {
-::osl::MutexGuard guard(lastTransBody.mutex);
-
-if (implName.equals(lastTransBody.Name))
-{
-// Use the cached body instead of going through the expensive looping 
again.
-body = lastTransBody.Body;
-return;
-}
-
 Reference< XContentEnumerationAccess > xEnumAccess( xSMgr, UNO_QUERY );
 Reference< XEnumeration > xEnum(xEnumAccess->createContentEnumeration(
 
OUString::createFromAscii(TRLT_SERVICELNAME_L10N)));
@@ -616,8 +605,6 @@ void TransliterationImpl::loadBody( OUString , 
ReferencequeryInterface(::getCppuType((
 const 
Reference*)0));
 a >>= body;
-lastTransBody.Name = implName;
-lastTransBody.Body = body;
 return;
 }
 }



(openoffice-docs) 01/03: Update AOO41WG3

2023-11-14 Thread knmc
This is an automated email from the ASF dual-hosted git repository.

knmc pushed a commit to branch Writer-Guide
in repository https://gitbox.apache.org/repos/asf/openoffice-docs.git

commit 10e86d9f5e04fd678b7cc7660eb5276233ba86b4
Author: knmc 
AuthorDate: Sun Nov 12 20:54:59 2023 -0500

Update AOO41WG3

Delete 0209WG3 old Version 3 file used to start repository

Rename 0209WG41 to new naming standar.
---
 Review/0209WG33-WorkingWithTables.odt  | Bin 396473 -> 0 bytes
 ...gro_20220418.odt => AOO41WG9-WorkingWithTables.odt} | Bin
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/Review/0209WG33-WorkingWithTables.odt 
b/Review/0209WG33-WorkingWithTables.odt
deleted file mode 100644
index 9df007a..000
Binary files a/Review/0209WG33-WorkingWithTables.odt and /dev/null differ
diff --git a/Review/0209WG41-WorkingWithTables_digro_20220418.odt 
b/Review/AOO41WG9-WorkingWithTables.odt
similarity index 100%
rename from Review/0209WG41-WorkingWithTables_digro_20220418.odt
rename to Review/AOO41WG9-WorkingWithTables.odt



(openoffice-docs) 03/03: Update AOO4WG4 & 6 PDF

2023-11-14 Thread knmc
This is an automated email from the ASF dual-hosted git repository.

knmc pushed a commit to branch Writer-Guide
in repository https://gitbox.apache.org/repos/asf/openoffice-docs.git

commit abb789164cae87a85682d24bde11549df6d91e37
Author: knmc 
AuthorDate: Mon Nov 13 01:03:30 2023 -0500

Update AOO4WG4 & 6 PDF

Compress the PDF files to try and meet the current  2 MB limit on the mwiki
---
 ForWiki/AOO41WG4-FormattingPages.pdf  | Bin 3292003 -> 2336031 bytes
 ForWiki/AOO41WG6-IntroductionToStyles.pdf | Bin 3201663 -> 1777849 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/ForWiki/AOO41WG4-FormattingPages.pdf 
b/ForWiki/AOO41WG4-FormattingPages.pdf
index 4ab7eae..352e234 100644
Binary files a/ForWiki/AOO41WG4-FormattingPages.pdf and 
b/ForWiki/AOO41WG4-FormattingPages.pdf differ
diff --git a/ForWiki/AOO41WG6-IntroductionToStyles.pdf 
b/ForWiki/AOO41WG6-IntroductionToStyles.pdf
index f412558..772b426 100644
Binary files a/ForWiki/AOO41WG6-IntroductionToStyles.pdf and 
b/ForWiki/AOO41WG6-IntroductionToStyles.pdf differ



(openoffice-docs) branch Writer-Guide updated (62ddcd8 -> abb7891)

2023-11-14 Thread knmc
This is an automated email from the ASF dual-hosted git repository.

knmc pushed a change to branch Writer-Guide
in repository https://gitbox.apache.org/repos/asf/openoffice-docs.git


from 62ddcd8  Update AOOWG418-WorkingWithGraphics.odt
 new 10e86d9  Update AOO41WG3
 new be2a57c  Update AOO41WG8 & 9
 new abb7891  Update AOO4WG4 & 6 PDF

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ForWiki/AOO41WG4-FormattingPages.pdf   | Bin 3292003 -> 2336031 
bytes
 ForWiki/AOO41WG6-IntroductionToStyles.pdf  | Bin 3201663 -> 1777849 
bytes
 .../0209WG41-WorkingWithTables_digro_20220418.odt  | Bin 405509 -> 0 bytes
 ...aphics.odt => AOO41WG8-WorkingWithGraphics.odt} | Bin
 ...thTables.odt => AOO41WG9-WorkingWithTables.odt} | Bin 396473 -> 389237 bytes
 5 files changed, 0 insertions(+), 0 deletions(-)
 delete mode 100644 Review/0209WG41-WorkingWithTables_digro_20220418.odt
 rename Review/{AOOWG418-WorkingWithGraphics.odt => 
AOO41WG8-WorkingWithGraphics.odt} (100%)
 rename Review/{0209WG33-WorkingWithTables.odt => 
AOO41WG9-WorkingWithTables.odt} (83%)



(openoffice-docs) 02/03: Update AOO41WG8 & 9

2023-11-14 Thread knmc
This is an automated email from the ASF dual-hosted git repository.

knmc pushed a commit to branch Writer-Guide
in repository https://gitbox.apache.org/repos/asf/openoffice-docs.git

commit be2a57c8b48d6e73931c7f3bdb7e0f1bdaf620d9
Author: knmc 
AuthorDate: Sun Nov 12 23:18:38 2023 -0500

Update AOO41WG8 & 9
---
 ...aphics.odt => AOO41WG8-WorkingWithGraphics.odt} | Bin
 Review/AOO41WG9-WorkingWithTables.odt  | Bin 405509 -> 389237 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/Review/AOOWG418-WorkingWithGraphics.odt 
b/Review/AOO41WG8-WorkingWithGraphics.odt
similarity index 100%
rename from Review/AOOWG418-WorkingWithGraphics.odt
rename to Review/AOO41WG8-WorkingWithGraphics.odt
diff --git a/Review/AOO41WG9-WorkingWithTables.odt 
b/Review/AOO41WG9-WorkingWithTables.odt
index 299aed7..1a7 100644
Binary files a/Review/AOO41WG9-WorkingWithTables.odt and 
b/Review/AOO41WG9-WorkingWithTables.odt differ



(openoffice) branch trunk updated: Do not cache instances of com.sun.star.i18n.Transliteration.l10n

2023-11-14 Thread ardovm
This is an automated email from the ASF dual-hosted git repository.

ardovm 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 f0439fff86 Do not cache instances of 
com.sun.star.i18n.Transliteration.l10n
f0439fff86 is described below

commit f0439fff86115a6959e104fea345d175528afdf0
Author: Arrigo Marchiori 
AuthorDate: Sun Feb 19 09:45:46 2023 +0100

Do not cache instances of com.sun.star.i18n.Transliteration.l10n

Such instances may be modified by the callers. If objects are cached,
one caller may see its instance unexpectedly modified by another caller.

This happened with Transliteration_caseignore instances  in bug #126680.
---
 main/i18npool/inc/transliterationImpl.hxx   |  9 -
 .../i18npool/source/transliteration/transliterationImpl.cxx | 13 -
 2 files changed, 22 deletions(-)

diff --git a/main/i18npool/inc/transliterationImpl.hxx 
b/main/i18npool/inc/transliterationImpl.hxx
index 5cd3c7b2bd..74b827b873 100644
--- a/main/i18npool/inc/transliterationImpl.hxx
+++ b/main/i18npool/inc/transliterationImpl.hxx
@@ -121,15 +121,6 @@ private:
 com::sun::star::uno::Reference< XLocaleData > localedata;
 com::sun::star::uno::Reference< 
com::sun::star::i18n::XExtendedTransliteration > caseignore;
 
-/** structure to cache the last transliteration body used. */
-struct TransBody
-{
-::osl::Mutex mutex;
-::rtl::OUString Name;
-::com::sun::star::uno::Reference< 
::com::sun::star::i18n::XExtendedTransliteration > Body;
-};
-static TransBody lastTransBody;
-
 virtual sal_Bool SAL_CALL loadModuleByName( const rtl::OUString& implName, 
 
com::sun::star::uno::Reference 
& body, const com::sun::star::lang::Locale& rLocale) 
 throw(com::sun::star::uno::RuntimeException);
diff --git a/main/i18npool/source/transliteration/transliterationImpl.cxx 
b/main/i18npool/source/transliteration/transliterationImpl.cxx
index 8b68415484..2141fd5859 100644
--- a/main/i18npool/source/transliteration/transliterationImpl.cxx
+++ b/main/i18npool/source/transliteration/transliterationImpl.cxx
@@ -144,8 +144,6 @@ static struct TMlist {
   {(TransliterationModules)0, (TransliterationModulesNew)0,  NULL}
 };
 
-TransliterationImpl::TransBody TransliterationImpl::lastTransBody;
-
 // Constructor/Destructor
 TransliterationImpl::TransliterationImpl(const Reference 
& xMSF) : xSMgr(xMSF)
 {
@@ -591,15 +589,6 @@ TransliterationImpl::clear()
 void TransliterationImpl::loadBody( OUString , 
Reference& body ) 
 throw (RuntimeException)
 {
-::osl::MutexGuard guard(lastTransBody.mutex);
-
-if (implName.equals(lastTransBody.Name))
-{
-// Use the cached body instead of going through the expensive looping 
again.
-body = lastTransBody.Body;
-return;
-}
-
 Reference< XContentEnumerationAccess > xEnumAccess( xSMgr, UNO_QUERY );
 Reference< XEnumeration > xEnum(xEnumAccess->createContentEnumeration(
 
OUString::createFromAscii(TRLT_SERVICELNAME_L10N)));
@@ -616,8 +605,6 @@ void TransliterationImpl::loadBody( OUString , 
ReferencequeryInterface(::getCppuType((
 const 
Reference*)0));
 a >>= body;
-lastTransBody.Name = implName;
-lastTransBody.Body = body;
 return;
 }
 }



(openoffice) branch AOO42X updated: Fixed typos, removed whitespace

2023-11-14 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 b941c31503 Fixed typos, removed whitespace
b941c31503 is described below

commit b941c3150372582499c41d28ecab7d846f9bb257
Author: mseidel 
AuthorDate: Tue Nov 14 13:47:17 2023 +0100

Fixed typos, removed whitespace

(cherry picked from commit b117abe83caeb58197276bada6e5243f273e3553)
---
 main/svx/inc/svx/svdobj.hxx | 129 +---
 1 file changed, 61 insertions(+), 68 deletions(-)

diff --git a/main/svx/inc/svx/svdobj.hxx b/main/svx/inc/svx/svdobj.hxx
index 91e564dfb5..8cce8185b0 100644
--- a/main/svx/inc/svx/svdobj.hxx
+++ b/main/svx/inc/svx/svdobj.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.
- * 
+ *
  */
 
 
@@ -31,8 +31,8 @@
 #include 
 #include 
 #include 
-#include  // fuer SdrLayerID
-#include  // Klebepunkte
+#include  // for SdrLayerID
+#include  // gluepoints
 #include 
 #include 
 #include 
@@ -43,7 +43,7 @@
 #include 
 
 //
-//   Vorausdeklarationen
+// Vorausdeklarationen
 //
 
 class SfxBroadcaster;
@@ -92,11 +92,11 @@ namespace sdr
 
 namespace svx
 {
-class PropertyChangeNotifier;
+   class PropertyChangeNotifier;
 }
 
 //
-//   Defines
+// Defines
 //
 
 enum SdrObjKind {OBJ_NONE   = 0,  // Abstraktes Objekt (SdrObject)
@@ -156,7 +156,7 @@ enum SdrUserCallType {SDRUSERCALL_MOVEONLY, // Nur 
verschoben, Groesse un
 // #define nLayerID nLayerId
 
 //
-//   Hilfsklasse SdrObjUserCall
+// Hilfsklasse SdrObjUserCall
 //
 
 class SVX_DLLPUBLIC SdrObjUserCall
@@ -168,7 +168,7 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjMacroHitRec
+// Hilfsklasse SdrObjMacroHitRec
 //
 
 class SdrObjMacroHitRec
@@ -193,7 +193,7 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjUserData
+// Hilfsklasse SdrObjUserData
 //
 // Anwenderdaten an einem Zeichenobjekt, z.B. applikationsspezifische Daten.
 // Jedes Zeichenobjekt kann beliebig viele dieser Records haben (SV-Liste).
@@ -210,9 +210,9 @@ protected:
sal_uInt16  nVersion;
 
 private:
-   SVX_DLLPRIVATE void operator=(const SdrObjUserData& rData);// 
nicht implementiert
-   SVX_DLLPRIVATE sal_Bool operator==(const SdrObjUserData& rData) const; 
// nicht implementiert
-   SVX_DLLPRIVATE sal_Bool operator!=(const SdrObjUserData& rData) const; 
// nicht implementiert
+   SVX_DLLPRIVATE void operator=(const SdrObjUserData& rData); // not 
implemented
+   SVX_DLLPRIVATE sal_Bool operator==(const SdrObjUserData& rData) const; 
// not implemented
+   SVX_DLLPRIVATE sal_Bool operator!=(const SdrObjUserData& rData) const; 
// not implemented
 
 public:
TYPEINFO();
@@ -242,7 +242,7 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjUserDataList
+// Hilfsklasse SdrObjUserDataList
 //
 
 class SdrObjUserDataList
@@ -264,9 +264,9 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjGeoData
+// Hilfsklasse SdrObjGeoData
 //
-// Alle geometrischen Daten eines beliebigen Objektes zur �bergabe an's 
Undo/Redo
+// Alle geometrischen Daten eines beliebigen Objektes zur Übergabe an Undo/Redo
 //
 //
 
@@ -289,7 +289,7 @@ public:
 };
 
 

(openoffice) branch trunk updated: Fixed typos, removed whitespace

2023-11-14 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 b117abe83c Fixed typos, removed whitespace
b117abe83c is described below

commit b117abe83caeb58197276bada6e5243f273e3553
Author: mseidel 
AuthorDate: Tue Nov 14 13:47:17 2023 +0100

Fixed typos, removed whitespace
---
 main/svx/inc/svx/svdobj.hxx | 129 +---
 1 file changed, 61 insertions(+), 68 deletions(-)

diff --git a/main/svx/inc/svx/svdobj.hxx b/main/svx/inc/svx/svdobj.hxx
index 91e564dfb5..8cce8185b0 100644
--- a/main/svx/inc/svx/svdobj.hxx
+++ b/main/svx/inc/svx/svdobj.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.
- * 
+ *
  */
 
 
@@ -31,8 +31,8 @@
 #include 
 #include 
 #include 
-#include  // fuer SdrLayerID
-#include  // Klebepunkte
+#include  // for SdrLayerID
+#include  // gluepoints
 #include 
 #include 
 #include 
@@ -43,7 +43,7 @@
 #include 
 
 //
-//   Vorausdeklarationen
+// Vorausdeklarationen
 //
 
 class SfxBroadcaster;
@@ -92,11 +92,11 @@ namespace sdr
 
 namespace svx
 {
-class PropertyChangeNotifier;
+   class PropertyChangeNotifier;
 }
 
 //
-//   Defines
+// Defines
 //
 
 enum SdrObjKind {OBJ_NONE   = 0,  // Abstraktes Objekt (SdrObject)
@@ -156,7 +156,7 @@ enum SdrUserCallType {SDRUSERCALL_MOVEONLY, // Nur 
verschoben, Groesse un
 // #define nLayerID nLayerId
 
 //
-//   Hilfsklasse SdrObjUserCall
+// Hilfsklasse SdrObjUserCall
 //
 
 class SVX_DLLPUBLIC SdrObjUserCall
@@ -168,7 +168,7 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjMacroHitRec
+// Hilfsklasse SdrObjMacroHitRec
 //
 
 class SdrObjMacroHitRec
@@ -193,7 +193,7 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjUserData
+// Hilfsklasse SdrObjUserData
 //
 // Anwenderdaten an einem Zeichenobjekt, z.B. applikationsspezifische Daten.
 // Jedes Zeichenobjekt kann beliebig viele dieser Records haben (SV-Liste).
@@ -210,9 +210,9 @@ protected:
sal_uInt16  nVersion;
 
 private:
-   SVX_DLLPRIVATE void operator=(const SdrObjUserData& rData);// 
nicht implementiert
-   SVX_DLLPRIVATE sal_Bool operator==(const SdrObjUserData& rData) const; 
// nicht implementiert
-   SVX_DLLPRIVATE sal_Bool operator!=(const SdrObjUserData& rData) const; 
// nicht implementiert
+   SVX_DLLPRIVATE void operator=(const SdrObjUserData& rData); // not 
implemented
+   SVX_DLLPRIVATE sal_Bool operator==(const SdrObjUserData& rData) const; 
// not implemented
+   SVX_DLLPRIVATE sal_Bool operator!=(const SdrObjUserData& rData) const; 
// not implemented
 
 public:
TYPEINFO();
@@ -242,7 +242,7 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjUserDataList
+// Hilfsklasse SdrObjUserDataList
 //
 
 class SdrObjUserDataList
@@ -264,9 +264,9 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjGeoData
+// Hilfsklasse SdrObjGeoData
 //
-// Alle geometrischen Daten eines beliebigen Objektes zur �bergabe an's 
Undo/Redo
+// Alle geometrischen Daten eines beliebigen Objektes zur Übergabe an Undo/Redo
 //
 //
 
@@ -289,7 +289,7 @@ public:
 };
 
 //
-//   Hilfsklasse SdrObjPlusData

(openoffice) branch AOO41X updated: misc: fix spelling (#182)

2023-11-14 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 a3cca4d209 misc: fix spelling (#182)
a3cca4d209 is described below

commit a3cca4d20920ce5237b89cb5000c6eb5ffe87428
Author: John Bampton 
AuthorDate: Tue Nov 14 19:28:41 2023 +1000

misc: fix spelling (#182)

Thank you very much for your contribution!

(cherry picked from commit 402c6fde746b160d73dd806e2d51c38830f54a1e)
---
 main/sc/source/filter/inc/xlstring.hxx | 4 ++--
 main/soltools/javadep/javadep.c| 2 +-
 main/sw/source/filter/ww8/ww8par.cxx   | 4 ++--
 main/vcl/inc/unx/XIM.h | 6 +++---
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/main/sc/source/filter/inc/xlstring.hxx 
b/main/sc/source/filter/inc/xlstring.hxx
index 387cc51e76..398d0f3e3a 100644
--- a/main/sc/source/filter/inc/xlstring.hxx
+++ b/main/sc/source/filter/inc/xlstring.hxx
@@ -51,8 +51,8 @@ const sal_uInt8 EXC_STRF_UNKNOWN= 0xF2;
 // Fixed-size characters
 const sal_uInt8 EXC_LF_C= '\x0A';   /// LF character 
(used for line break).
 const sal_uInt16 EXC_LF = EXC_LF_C; /// LF character 
(unicode).
-const sal_uInt8 EXC_NUL_C   = '\x00';   /// NUL chararcter.
-const sal_uInt16 EXC_NUL= EXC_NUL_C;/// NUL chararcter 
(unicode).
+const sal_uInt8 EXC_NUL_C   = '\x00';   /// NUL character.
+const sal_uInt16 EXC_NUL= EXC_NUL_C;/// NUL character 
(unicode).
 
 // Rich-string formatting runs 
 
diff --git a/main/soltools/javadep/javadep.c b/main/soltools/javadep/javadep.c
index a84be62793..6a1013e118 100644
--- a/main/soltools/javadep/javadep.c
+++ b/main/soltools/javadep/javadep.c
@@ -398,7 +398,7 @@ is_inner(const char *pstr)
 /*
  * note that a '$' in a classname is not an exact indicator
  * for an inner class. Java identifier may legally contain 
- * this chararcter, and so may classnames. In the context
+ * this character, and so may classnames. In the context
  * of javadep this doesn't matter since the makefile system
  * can't cope with classfiles with '$'s in the filename 
  * anyway.
diff --git a/main/sw/source/filter/ww8/ww8par.cxx 
b/main/sw/source/filter/ww8/ww8par.cxx
index 30d2f5144a..f9bf88f3dc 100644
--- a/main/sw/source/filter/ww8/ww8par.cxx
+++ b/main/sw/source/filter/ww8/ww8par.cxx
@@ -219,8 +219,8 @@ void lclIgnoreString32( SvMemoryStream& rStrm, bool b16Bit )
 String SwWW8ImplReader::ReadRawUniString( SvMemoryStream& rStrm,sal_uInt16 
nChars, bool b16Bit )
 {
// Fixed-size characters
-   const sal_uInt8 WW8_NUL_C   = '\x00';   /// NUL 
chararcter.
-   const sal_uInt16 WW8_NUL= WW8_NUL_C;/// NUL 
chararcter (unicode).
+   const sal_uInt8 WW8_NUL_C   = '\x00';   /// NUL 
character.
+   const sal_uInt16 WW8_NUL= WW8_NUL_C;/// NUL 
character (unicode).
String aRet;
sal_Unicode mcNulSubst = '\0';
 
diff --git a/main/vcl/inc/unx/XIM.h b/main/vcl/inc/unx/XIM.h
index 2143d87965..39fa411e81 100644
--- a/main/vcl/inc/unx/XIM.h
+++ b/main/vcl/inc/unx/XIM.h
@@ -97,14 +97,14 @@ typedef enum {
   XIMKatakana, XIMHanzi
 } XIMUnicodeCharacterSubsetID;
 
-typedefstruct  _XIMUncodeSubset {
+typedefstruct  _XIMUnicodeSubset {
   XIMUnicodeCharacterSubsetID  index;
   XIMUnicodeCharacterSubsetID  subset_id;
   char *name;
   Bool is_active;
 } XIMUnicodeCharacterSubset;
 
-typedefstruct  _XIMUncodeSubsets {
+typedefstruct  _XIMUnicodeSubsets {
   unsigned short count_subsets;
   XIMUnicodeCharacterSubset *supported_subsets;
 } XIMUnicodeCharacterSubsets;
@@ -120,7 +120,7 @@ typedef struct  _XIMSwitchIMNotifyCallbackStruct {
 
 /* XIC attributes for multilingual IM extension */
 
-#define XNUnicodeCharacterSubset "UnicodeChararcterSubset"
+#define XNUnicodeCharacterSubset "UnicodeCharacterSubset"
 
 #define XNSwitchIMNotifyCallback "switchIMNotifyCallback"
 #define XNCommitStringCallback "commitStringCallback"



(openoffice) branch AOO42X updated: misc: fix spelling (#182)

2023-11-14 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 658bed3761 misc: fix spelling (#182)
658bed3761 is described below

commit 658bed3761a57e460d06a2bef1e1e529686edb32
Author: John Bampton 
AuthorDate: Tue Nov 14 19:28:41 2023 +1000

misc: fix spelling (#182)

Thank you very much for your contribution!

(cherry picked from commit 402c6fde746b160d73dd806e2d51c38830f54a1e)
---
 main/sc/source/filter/inc/xlstring.hxx | 4 ++--
 main/soltools/javadep/javadep.c| 2 +-
 main/sw/source/filter/ww8/ww8par.cxx   | 4 ++--
 main/vcl/inc/unx/XIM.h | 6 +++---
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/main/sc/source/filter/inc/xlstring.hxx 
b/main/sc/source/filter/inc/xlstring.hxx
index 387cc51e76..398d0f3e3a 100644
--- a/main/sc/source/filter/inc/xlstring.hxx
+++ b/main/sc/source/filter/inc/xlstring.hxx
@@ -51,8 +51,8 @@ const sal_uInt8 EXC_STRF_UNKNOWN= 0xF2;
 // Fixed-size characters
 const sal_uInt8 EXC_LF_C= '\x0A';   /// LF character 
(used for line break).
 const sal_uInt16 EXC_LF = EXC_LF_C; /// LF character 
(unicode).
-const sal_uInt8 EXC_NUL_C   = '\x00';   /// NUL chararcter.
-const sal_uInt16 EXC_NUL= EXC_NUL_C;/// NUL chararcter 
(unicode).
+const sal_uInt8 EXC_NUL_C   = '\x00';   /// NUL character.
+const sal_uInt16 EXC_NUL= EXC_NUL_C;/// NUL character 
(unicode).
 
 // Rich-string formatting runs 
 
diff --git a/main/soltools/javadep/javadep.c b/main/soltools/javadep/javadep.c
index 7033722cce..8bc17df693 100644
--- a/main/soltools/javadep/javadep.c
+++ b/main/soltools/javadep/javadep.c
@@ -401,7 +401,7 @@ is_inner(const char *pstr)
 /*
  * note that a '$' in a classname is not an exact indicator
  * for an inner class. Java identifier may legally contain 
- * this chararcter, and so may classnames. In the context
+ * this character, and so may classnames. In the context
  * of javadep this doesn't matter since the makefile system
  * can't cope with classfiles with '$'s in the filename 
  * anyway.
diff --git a/main/sw/source/filter/ww8/ww8par.cxx 
b/main/sw/source/filter/ww8/ww8par.cxx
index 5a9e2360ce..aeee3f23c6 100644
--- a/main/sw/source/filter/ww8/ww8par.cxx
+++ b/main/sw/source/filter/ww8/ww8par.cxx
@@ -219,8 +219,8 @@ void lclIgnoreString32( SvMemoryStream& rStrm, bool b16Bit )
 String SwWW8ImplReader::ReadRawUniString( SvMemoryStream& rStrm,sal_uInt16 
nChars, bool b16Bit )
 {
// Fixed-size characters
-   const sal_uInt8 WW8_NUL_C   = '\x00';   /// NUL 
chararcter.
-   const sal_uInt16 WW8_NUL= WW8_NUL_C;/// NUL 
chararcter (unicode).
+   const sal_uInt8 WW8_NUL_C   = '\x00';   /// NUL 
character.
+   const sal_uInt16 WW8_NUL= WW8_NUL_C;/// NUL 
character (unicode).
String aRet;
sal_Unicode mcNulSubst = '\0';
 
diff --git a/main/vcl/inc/unx/XIM.h b/main/vcl/inc/unx/XIM.h
index 31269b3e8b..f4abff07f2 100644
--- a/main/vcl/inc/unx/XIM.h
+++ b/main/vcl/inc/unx/XIM.h
@@ -97,14 +97,14 @@ typedef enum {
   XIMKatakana, XIMHanzi
 } XIMUnicodeCharacterSubsetID;
 
-typedefstruct  _XIMUncodeSubset {
+typedefstruct  _XIMUnicodeSubset {
   XIMUnicodeCharacterSubsetID  index;
   XIMUnicodeCharacterSubsetID  subset_id;
   char *name;
   Bool is_active;
 } XIMUnicodeCharacterSubset;
 
-typedefstruct  _XIMUncodeSubsets {
+typedefstruct  _XIMUnicodeSubsets {
   unsigned short count_subsets;
   XIMUnicodeCharacterSubset *supported_subsets;
 } XIMUnicodeCharacterSubsets;
@@ -120,7 +120,7 @@ typedef struct  _XIMSwitchIMNotifyCallbackStruct {
 
 /* XIC attributes for multilingual IM extension */
 
-#define XNUnicodeCharacterSubset "UnicodeChararcterSubset"
+#define XNUnicodeCharacterSubset "UnicodeCharacterSubset"
 
 #define XNSwitchIMNotifyCallback "switchIMNotifyCallback"
 #define XNCommitStringCallback "commitStringCallback"



(openoffice) branch trunk updated: misc: fix spelling (#182)

2023-11-14 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 402c6fde74 misc: fix spelling (#182)
402c6fde74 is described below

commit 402c6fde746b160d73dd806e2d51c38830f54a1e
Author: John Bampton 
AuthorDate: Tue Nov 14 19:28:41 2023 +1000

misc: fix spelling (#182)

Thank you very much for your contribution!
---
 main/sc/source/filter/inc/xlstring.hxx | 4 ++--
 main/soltools/javadep/javadep.c| 2 +-
 main/sw/source/filter/ww8/ww8par.cxx   | 4 ++--
 main/vcl/inc/unx/XIM.h | 6 +++---
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/main/sc/source/filter/inc/xlstring.hxx 
b/main/sc/source/filter/inc/xlstring.hxx
index 387cc51e76..398d0f3e3a 100644
--- a/main/sc/source/filter/inc/xlstring.hxx
+++ b/main/sc/source/filter/inc/xlstring.hxx
@@ -51,8 +51,8 @@ const sal_uInt8 EXC_STRF_UNKNOWN= 0xF2;
 // Fixed-size characters
 const sal_uInt8 EXC_LF_C= '\x0A';   /// LF character 
(used for line break).
 const sal_uInt16 EXC_LF = EXC_LF_C; /// LF character 
(unicode).
-const sal_uInt8 EXC_NUL_C   = '\x00';   /// NUL chararcter.
-const sal_uInt16 EXC_NUL= EXC_NUL_C;/// NUL chararcter 
(unicode).
+const sal_uInt8 EXC_NUL_C   = '\x00';   /// NUL character.
+const sal_uInt16 EXC_NUL= EXC_NUL_C;/// NUL character 
(unicode).
 
 // Rich-string formatting runs 
 
diff --git a/main/soltools/javadep/javadep.c b/main/soltools/javadep/javadep.c
index 7033722cce..8bc17df693 100644
--- a/main/soltools/javadep/javadep.c
+++ b/main/soltools/javadep/javadep.c
@@ -401,7 +401,7 @@ is_inner(const char *pstr)
 /*
  * note that a '$' in a classname is not an exact indicator
  * for an inner class. Java identifier may legally contain 
- * this chararcter, and so may classnames. In the context
+ * this character, and so may classnames. In the context
  * of javadep this doesn't matter since the makefile system
  * can't cope with classfiles with '$'s in the filename 
  * anyway.
diff --git a/main/sw/source/filter/ww8/ww8par.cxx 
b/main/sw/source/filter/ww8/ww8par.cxx
index 5a9e2360ce..aeee3f23c6 100644
--- a/main/sw/source/filter/ww8/ww8par.cxx
+++ b/main/sw/source/filter/ww8/ww8par.cxx
@@ -219,8 +219,8 @@ void lclIgnoreString32( SvMemoryStream& rStrm, bool b16Bit )
 String SwWW8ImplReader::ReadRawUniString( SvMemoryStream& rStrm,sal_uInt16 
nChars, bool b16Bit )
 {
// Fixed-size characters
-   const sal_uInt8 WW8_NUL_C   = '\x00';   /// NUL 
chararcter.
-   const sal_uInt16 WW8_NUL= WW8_NUL_C;/// NUL 
chararcter (unicode).
+   const sal_uInt8 WW8_NUL_C   = '\x00';   /// NUL 
character.
+   const sal_uInt16 WW8_NUL= WW8_NUL_C;/// NUL 
character (unicode).
String aRet;
sal_Unicode mcNulSubst = '\0';
 
diff --git a/main/vcl/inc/unx/XIM.h b/main/vcl/inc/unx/XIM.h
index 31269b3e8b..f4abff07f2 100644
--- a/main/vcl/inc/unx/XIM.h
+++ b/main/vcl/inc/unx/XIM.h
@@ -97,14 +97,14 @@ typedef enum {
   XIMKatakana, XIMHanzi
 } XIMUnicodeCharacterSubsetID;
 
-typedefstruct  _XIMUncodeSubset {
+typedefstruct  _XIMUnicodeSubset {
   XIMUnicodeCharacterSubsetID  index;
   XIMUnicodeCharacterSubsetID  subset_id;
   char *name;
   Bool is_active;
 } XIMUnicodeCharacterSubset;
 
-typedefstruct  _XIMUncodeSubsets {
+typedefstruct  _XIMUnicodeSubsets {
   unsigned short count_subsets;
   XIMUnicodeCharacterSubset *supported_subsets;
 } XIMUnicodeCharacterSubsets;
@@ -120,7 +120,7 @@ typedef struct  _XIMSwitchIMNotifyCallbackStruct {
 
 /* XIC attributes for multilingual IM extension */
 
-#define XNUnicodeCharacterSubset "UnicodeChararcterSubset"
+#define XNUnicodeCharacterSubset "UnicodeCharacterSubset"
 
 #define XNSwitchIMNotifyCallback "switchIMNotifyCallback"
 #define XNCommitStringCallback "commitStringCallback"