include/vcl/weld.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6156ea35f77cc38c197fb718f2ed4bd5015a8dfa
Author:     Thorsten Behrens <thorsten.behr...@allotropia.de>
AuthorDate: Sat Feb 5 00:20:56 2022 +0100
Commit:     Thorsten Behrens <thorsten.behr...@allotropia.de>
CommitDate: Sat Feb 5 15:29:19 2022 +0100

    Fix [-Wignored-qualifiers]
    
    Change-Id: Iba8b8536be38f99b7b7447d96abad61db7b7269f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129517
    Tested-by: Jenkins
    Tested-by: Justin Luth <jl...@mail.com>
    Reviewed-by: Justin Luth <jl...@mail.com>
    Reviewed-by: Thorsten Behrens <thorsten.behr...@allotropia.de>

diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index d02f5b43c086..1b2ebb5f819d 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -644,7 +644,7 @@ public:
 
 inline OUString toId(const void* pValue)
 {
-    return OUString::number(reinterpret_cast<const sal_uInt64>(pValue));
+    return OUString::number(reinterpret_cast<sal_uInt64>(pValue));
 }
 
 template <typename T> T fromId(const OUString& rValue)

Reply via email to