[Libreoffice-commits] core.git: vcl/inc

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Mon May 10 11:09:02 UTC 2021


 vcl/inc/strings.hrc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6bab3e80deb7733d2b2d4802a65430f541b86782
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon May 10 10:21:40 2021 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Mon May 10 13:08:21 2021 +0200

    change <No selection possible> to avoid getting identified as an xml tag
    
    Failed to set text '<No selection possible>' from markup due to error
    parsing markup: Error on line 1 char 23: Odd character “p”, expected a
    “=” after attribute name “selection” of element “No”
    
    Change-Id: I8567862cb0f746529bcaa370e61a423dc9f646b2
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115313
    Tested-by: Caolán McNamara <caolanm at redhat.com>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/inc/strings.hrc b/vcl/inc/strings.hrc
index 2acb7bf45e0c..95468d1d4538 100644
--- a/vcl/inc/strings.hrc
+++ b/vcl/inc/strings.hrc
@@ -22,7 +22,7 @@
 
 #define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String)
 
-#define SV_RESID_STRING_NOSELECTIONPOSSIBLE          NC_("SV_RESID_STRING_NOSELECTIONPOSSIBLE", "<No selection possible>")
+#define SV_RESID_STRING_NOSELECTIONPOSSIBLE          NC_("SV_RESID_STRING_NOSELECTIONPOSSIBLE", "[No selection possible]")
 
 #define SV_MENU_MAC_SERVICES                         NC_("SV_MENU_MAC_SERVICES", "Services")
 #define SV_MENU_MAC_HIDEAPP                          NC_("SV_MENU_MAC_HIDEAPP", "Hide %PRODUCTNAME")


More information about the Libreoffice-commits mailing list