include/vcl/vclreferencebase.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 1a1507a969b63e5cf45b5a28dbc4c00ae2c635ed Author: Noel Grandin <[email protected]> Date: Tue Jul 25 15:44:16 2017 +0200 VclReferenceBase::getRefCount should return sal_Int32 Change-Id: I30f8b82fe79fb4822ff9888acd0aa16889bbf4ac Reviewed-on: https://gerrit.libreoffice.org/40413 Reviewed-by: Julien Nabet <[email protected]> Tested-by: Jenkins <[email protected]> Reviewed-by: Noel Grandin <[email protected]> Tested-by: Noel Grandin <[email protected]> diff --git a/include/vcl/vclreferencebase.hxx b/include/vcl/vclreferencebase.hxx index feb1f19523e4..f90f579631a8 100644 --- a/include/vcl/vclreferencebase.hxx +++ b/include/vcl/vclreferencebase.hxx @@ -46,7 +46,7 @@ public: } #ifdef DBG_UTIL #ifndef WNT - int getRefCount() const { return mnRefCnt; } + sal_Int32 getRefCount() const { return mnRefCnt; } #endif #endif _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
