diff options
author | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2022-02-05 00:20:56 +0100 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2022-02-05 15:29:19 +0100 |
commit | 6156ea35f77cc38c197fb718f2ed4bd5015a8dfa (patch) | |
tree | 9f15aab2b6166c62e9361b610db584484c7aa279 /include | |
parent | efcb393a0f21574d37d623882f05f6f1efdfcc0d (diff) |
Fix [-Wignored-qualifiers]
Change-Id: Iba8b8536be38f99b7b7447d96abad61db7b7269f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129517
Tested-by: Jenkins
Tested-by: Justin Luth <jluth@mail.com>
Reviewed-by: Justin Luth <jluth@mail.com>
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/weld.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
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) |