You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by di...@apache.org on 2021/10/03 12:03:04 UTC

[openoffice] branch DiGro-patch-1 created (now ba4b332)

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

digro pushed a change to branch DiGro-patch-1
in repository https://gitbox.apache.org/repos/asf/openoffice.git.


      at ba4b332  Occurence "OpenOffice.org" in dialog Writing Aids for new thesaurus

This branch includes the following new commits:

     new ba4b332  Occurence "OpenOffice.org" in dialog Writing Aids for new thesaurus

The 1 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.


[openoffice] 01/01: Occurence "OpenOffice.org" in dialog Writing Aids for new thesaurus

Posted by di...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

digro pushed a commit to branch DiGro-patch-1
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit ba4b3329facb3024a6d92dc95526ada2e3d146c2
Author: DiGro <di...@yahoo.co.uk>
AuthorDate: Sun Oct 3 14:03:00 2021 +0200

    Occurence "OpenOffice.org" in dialog Writing Aids for new thesaurus
    
    Just noticed the occurrence of the string "OpenOffice.org New Thesaurus" in the
    dialog Writing Aids (Tools > Options > Language Settings > Writing Aids) in the
    Developer Build 4.2.0
    
    This should probably be changed to "New Thesaurus" only.
    
    OpenGrok found the string just once, in:
    
    /trunk/main/lingucomponent/source/thesaurus/libnth/nthesimp.cxx (revision
    c4c42a0)
    
    Line:
    576 {
    577 MutexGuard aGuard( GetLinguMutex() );
    578 return A2OU( "OpenOffice.org New Thesaurus" );
    579 }
    
    Since I'm no developer at all I just deleted "OpenOffice.org".
    Hope someone will check if I did it as supposed to.
    
    Should probably also need to be changed in branches AOO41 and AOO42 too
    
    Earlier reported in BugZilla Issue ID: 128483 https://bz.apache.org/ooo/show_bug.cgi?id=1284
---
 main/lingucomponent/source/thesaurus/libnth/nthesimp.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/lingucomponent/source/thesaurus/libnth/nthesimp.cxx b/main/lingucomponent/source/thesaurus/libnth/nthesimp.cxx
index ab9afc0..9ca7f25 100644
--- a/main/lingucomponent/source/thesaurus/libnth/nthesimp.cxx
+++ b/main/lingucomponent/source/thesaurus/libnth/nthesimp.cxx
@@ -575,7 +575,7 @@ OUString SAL_CALL Thesaurus::getServiceDisplayName( const Locale& /*rLocale*/ )
 		throw(RuntimeException)
 {
 	MutexGuard	aGuard( GetLinguMutex() );
-	return A2OU( "OpenOffice.org New Thesaurus" );
+	return A2OU( "New Thesaurus" );
 }