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 2022/08/24 17:46:18 UTC

[openoffice] branch AOO42X updated: Remove superfluous space in tooltip

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 b174fd2fd6 Remove superfluous space in tooltip
b174fd2fd6 is described below

commit b174fd2fd6a95924f28ce33fdd63a187f6d51a67
Author: mseidel <ms...@apache.org>
AuthorDate: Wed Aug 24 19:42:17 2022 +0200

    Remove superfluous space in tooltip
    
    This fixes
    
    https://bz.apache.org/ooo/show_bug.cgi?id=105913
    
    Many thanks to Oliver Specht!
    
    (cherry picked from commit dbca5b1a75ddace19141aafd9609bcc4c13a8b89)
---
 main/sw/source/ui/docvw/edtwin2.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/sw/source/ui/docvw/edtwin2.cxx b/main/sw/source/ui/docvw/edtwin2.cxx
index fceaaa5904..a50709a057 100644
--- a/main/sw/source/ui/docvw/edtwin2.cxx
+++ b/main/sw/source/ui/docvw/edtwin2.cxx
@@ -150,7 +150,7 @@ void SwEditWin::RequestHelp(const HelpEvent &rEvt)
             switch( aCntntAtPos.eCntntAtPos )
             {
             case SwContentAtPos::SW_TABLEBOXFML:
-                sTxt.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "= " ));
+                sTxt.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "=" ));
                 sTxt += ((SwTblBoxFormula*)aCntntAtPos.aFnd.pAttr)->GetFormula();
                 break;
 #ifdef DBG_UTIL