[Libreoffice-commits] core.git: basctl/source

2022-10-16 Thread PoonamShokeen (via logerrit)
 basctl/source/basicide/baside2b.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 42d7cd1abca095d5166a7f4355f1cfc0f822961b
Author: PoonamShokeen 
AuthorDate: Fri Oct 7 12:12:41 2022 -0500
Commit: Ilmari Lauhakangas 
CommitDate: Sun Oct 16 09:19:41 2022 +0200

tdf#114441 Convert use of sal_uLong to sal_uInt32

Change-Id: I1443d1548fc191b057ce073e77f5f4f244086675
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141264
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git a/basctl/source/basicide/baside2b.cxx 
b/basctl/source/basicide/baside2b.cxx
index 249a636fdee7..2f768ed3077c 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -234,7 +234,7 @@ public:
 }
 
 private:
-sal_uLong nCurState;
+sal_uInt32 nCurState;
 };
 
 EditorWindow::EditorWindow (vcl::Window* pParent, ModulWindow* pModulWindow) :


[Libreoffice-commits] core.git: accessibility/source

2022-09-15 Thread PoonamShokeen (via logerrit)
 accessibility/source/extended/accessibletablistbox.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d29958304b3ff87115ed5af16b482327ea05ce14
Author: PoonamShokeen 
AuthorDate: Thu Sep 1 15:02:48 2022 -0500
Commit: Hossein 
CommitDate: Thu Sep 15 15:20:43 2022 +0200

tdf#42982 improve UNO API error reporting

Change-Id: Ibaf4bb0a9c9a8f613fd63ccd53a0e29d840fb21a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137904
Tested-by: Jenkins
Reviewed-by: Hossein 

diff --git a/accessibility/source/extended/accessibletablistbox.cxx 
b/accessibility/source/extended/accessibletablistbox.cxx
index ef915d08fa01..f4bffa6e7442 100644
--- a/accessibility/source/extended/accessibletablistbox.cxx
+++ b/accessibility/source/extended/accessibletablistbox.cxx
@@ -100,7 +100,7 @@ namespace accessibility
 xRet = implGetTable();
 
 if ( !xRet.is() )
-throw RuntimeException();
+throw RuntimeException("getAccessibleChild called with NULL 
xRet",static_cast< cppu::OWeakObject * >(this));
 
 return xRet;
 }


[Libreoffice-commits] core.git: extensions/source

2022-08-26 Thread PoonamShokeen (via logerrit)
 extensions/source/activex/SODispatchInterceptor.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 08a63a88543b0da68380090b655e777bd2b980be
Author: PoonamShokeen 
AuthorDate: Wed Jul 27 12:24:51 2022 -0500
Commit: Hossein 
CommitDate: Fri Aug 26 22:37:43 2022 +0200

tdf#145538 Use range based for loops

Change-Id: I144d020c6c57937caa800f019ab175597ed8ede4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137538
Tested-by: Jenkins
Reviewed-by: Hossein 

diff --git a/extensions/source/activex/SODispatchInterceptor.cxx 
b/extensions/source/activex/SODispatchInterceptor.cxx
index adffa93fa64c..14c42a774393 100644
--- a/extensions/source/activex/SODispatchInterceptor.cxx
+++ b/extensions/source/activex/SODispatchInterceptor.cxx
@@ -46,9 +46,9 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
SODispatchInterceptor::InterfaceSupportsErrorI
 _ISODispatchInterceptor,
 };
 
-for (std::size_t i=0;i

[Libreoffice-commits] core.git: include/framework

2022-07-22 Thread PoonamShokeen (via logerrit)
 include/framework/interaction.hxx |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 053f470316b89b6fcea1fac69e6bffd4f65f91ee
Author: PoonamShokeen 
AuthorDate: Wed Jul 20 22:25:14 2022 -0500
Commit: Ilmari Lauhakangas 
CommitDate: Fri Jul 22 19:53:13 2022 +0200

tdf#143148 Use pragma once instead of include guards

Change-Id: I7061e0985c51910ba6a8b862cd755b8b4f7016bd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137279
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git a/include/framework/interaction.hxx 
b/include/framework/interaction.hxx
old mode 100644
new mode 100755
index 4700d19200c9..33647e241b89
--- a/include/framework/interaction.hxx
+++ b/include/framework/interaction.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_FRAMEWORK_INTERACTION_HXX
-#define INCLUDED_FRAMEWORK_INTERACTION_HXX
+#pragma once
 
 #include 
 #include 
@@ -100,6 +99,4 @@ public:
 
 } //  namespace framework
 
-#endif // #define INCLUDED_FRAMEWORK_INTERACTION_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */