You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2023/04/22 22:36:33 UTC

[openoffice] branch AOO41X updated (8e34cc788a -> e4c033a6c6)

This is an automated email from the ASF dual-hosted git repository.

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


    from 8e34cc788a Small corrections to German SDF
     new 900c79c115 Fix for issue #61244 (#16)
     new e4c033a6c6 Fix for issue #127895 (#31)

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:
 main/helpcontent2/source/text/sbasic/shared/03120402.xhp | 4 ++--
 main/sfx2/source/doc/sfxbasemodel.cxx                    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


[openoffice] 01/02: Fix for issue #61244 (#16)

Posted by ms...@apache.org.
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

commit 900c79c115b2ef89e778ede20bc69fdd3b0669d1
Author: Bidouille <oo...@free.fr>
AuthorDate: Sun Apr 26 14:02:57 2020 +0200

    Fix for issue #61244 (#16)
    
    See: https://bz.apache.org/ooo/show_bug.cgi?id=61244
    (cherry picked from commit 20283169add478425e08206441bf56b119b30501)
---
 main/helpcontent2/source/text/sbasic/shared/03120402.xhp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main/helpcontent2/source/text/sbasic/shared/03120402.xhp b/main/helpcontent2/source/text/sbasic/shared/03120402.xhp
index 11c21dbe65..f910130818 100644
--- a/main/helpcontent2/source/text/sbasic/shared/03120402.xhp
+++ b/main/helpcontent2/source/text/sbasic/shared/03120402.xhp
@@ -40,7 +40,7 @@
 <bookmark xml-lang="en-US" branch="index" id="bm_id3154136"><bookmark_value>Len function</bookmark_value>
 </bookmark>
 <paragraph role="heading" id="hd_id3154136" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03120402.xhp" name="Len Function [Runtime]">Len Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3147576" xml-lang="en-US" l10n="U" oldref="2">Returns the number of characters in a string, or the number of bytes that are required to store a variable.</paragraph>
+<paragraph role="paragraph" id="par_id3147576" xml-lang="en-US" l10n="U" oldref="2">Returns the number of characters in a string.</paragraph>
 </section>
 <paragraph role="heading" id="hd_id3159177" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph>
 <paragraph role="paragraph" id="par_id3150669" xml-lang="en-US" l10n="U" oldref="4">Len (Text As String)</paragraph>
@@ -48,7 +48,7 @@
 <paragraph role="paragraph" id="par_id3143270" xml-lang="en-US" l10n="U" oldref="6">Long</paragraph>
 <paragraph role="heading" id="hd_id3147531" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph>
 <paragraph role="paragraph" id="par_id3147265" xml-lang="en-US" l10n="U" oldref="8">
-<emph>Text:</emph> Any string expression or a variable of another type.</paragraph>
+<emph>Text:</emph> Any string expression.</paragraph>
 <embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
 <embed href="text/sbasic/shared/00000003.xhp#err5"/>
 <paragraph role="heading" id="hd_id3153360" xml-lang="en-US" level="2" l10n="U" oldref="9">Example:</paragraph>


[openoffice] 02/02: Fix for issue #127895 (#31)

Posted by ms...@apache.org.
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

commit e4c033a6c67754b39675d5af31808c4bb3a33173
Author: Bidouille <oo...@free.fr>
AuthorDate: Fri May 7 23:47:40 2021 +0200

    Fix for issue #127895 (#31)
    
    Fixes using the incorrect variable.  See https://bz.apache.org/ooo/show_bug.cgi?id=127895
    (cherry picked from commit b82be50fa0f1a4e9f27bc8d6c5da1904c31a998f)
---
 main/sfx2/source/doc/sfxbasemodel.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/sfx2/source/doc/sfxbasemodel.cxx b/main/sfx2/source/doc/sfxbasemodel.cxx
index 17c19a6ecf..9dd35ed259 100644
--- a/main/sfx2/source/doc/sfxbasemodel.cxx
+++ b/main/sfx2/source/doc/sfxbasemodel.cxx
@@ -937,7 +937,7 @@ void SAL_CALL SfxBaseModel::disposing( const lang::EventObject& aObject )
     else if ( xListener.is() )
         m_pData->m_aInterfaceContainer.removeInterface( ::getCppuType((const uno::Reference< XEVENTLISTENER >*)0), xListener );
     else if ( xDocListener.is() )
-        m_pData->m_aInterfaceContainer.removeInterface( ::getCppuType((const uno::Reference< XDOCEVENTLISTENER >*)0), xListener );
+        m_pData->m_aInterfaceContainer.removeInterface( ::getCppuType((const uno::Reference< XDOCEVENTLISTENER >*)0), xDocListener );
 }
 
 //________________________________________________________________________________________________________