comphelper/source/compare/AnyCompareFactory.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 369c3bb5f0e47586bd743e68690d128758f3ce7c
Author:     Noel Grandin <[email protected]>
AuthorDate: Tue Sep 10 13:08:30 2024 +0200
Commit:     Noel Grandin <[email protected]>
CommitDate: Tue Sep 10 16:23:08 2024 +0200

    use more concrete UNO type in comphelper
    
    Change-Id: I290b3ca15d9fc50e5c272c8e6a6634811a595d20
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173134
    Reviewed-by: Noel Grandin <[email protected]>
    Tested-by: Jenkins

diff --git a/comphelper/source/compare/AnyCompareFactory.cxx 
b/comphelper/source/compare/AnyCompareFactory.cxx
index 785fc9005707..52ce3c39aa8d 100644
--- a/comphelper/source/compare/AnyCompareFactory.cxx
+++ b/comphelper/source/compare/AnyCompareFactory.cxx
@@ -25,6 +25,7 @@
 #include <cppuhelper/supportsservice.hxx>
 #include <com/sun/star/lang/XServiceInfo.hpp>
 #include <com/sun/star/lang/XInitialization.hpp>
+#include <rtl/ref.hxx>
 
 using namespace com::sun::star::uno;
 using namespace com::sun::star::ucb;
@@ -50,7 +51,7 @@ public:
 
 class AnyCompareFactory : public cppu::WeakImplHelper< XAnyCompareFactory, 
XInitialization, XServiceInfo >
 {
-    Reference< XAnyCompare >            m_xAnyCompare;
+    rtl::Reference< AnyCompare >        m_xAnyCompare;
     Reference< XComponentContext >      m_xContext;
     Locale                              m_Locale;
 

Reply via email to