summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThorsten Behrens <thorsten.behrens@allotropia.de>2022-02-05 00:20:56 +0100
committerThorsten Behrens <thorsten.behrens@allotropia.de>2022-02-05 15:29:19 +0100
commit6156ea35f77cc38c197fb718f2ed4bd5015a8dfa (patch)
tree9f15aab2b6166c62e9361b610db584484c7aa279 /include
parentefcb393a0f21574d37d623882f05f6f1efdfcc0d (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.hxx2
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)