dbaccess/source/ui/inc/RelationController.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bbafffa0ebd837a2951b0730a9a95c116c8e8fe8
Author:     anish.deshpande <anishmdeshpa...@gmail.com>
AuthorDate: Thu Feb 29 23:06:11 2024 +0530
Commit:     Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>
CommitDate: Fri Mar 15 20:25:11 2024 +0100

    tdf#114441 change use of sal_uLong to better integer types in dbaccess
    
    Reason for changing m_nThreadEvent:
    
    This variable denotes the number of events happening on one thread of the
    processor and is calculated from a sal_Int32 value.
    
    Change-Id: I1c76368b3dc1f649e6d800cde8c2a841ff5b82f5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164170
    Tested-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>
    Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>

diff --git a/dbaccess/source/ui/inc/RelationController.hxx 
b/dbaccess/source/ui/inc/RelationController.hxx
index a457f38b8057..e76223375a8d 100644
--- a/dbaccess/source/ui/inc/RelationController.hxx
+++ b/dbaccess/source/ui/inc/RelationController.hxx
@@ -34,7 +34,7 @@ namespace dbaui
     {
         css::uno::Reference< css::container::XNameAccess >    m_xTables;
         std::unique_ptr<weld::WaitObject> m_xWaitObject;
-        sal_uLong       m_nThreadEvent;
+        sal_Int32      m_nThreadEvent;
         bool            m_bRelationsPossible;
     protected:
         // all the features which should be handled by this class

Reply via email to