From c12c84e6d8f26b7c7dfd4d0daa642879b435d2c6 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 5 Sep 2019 23:15:37 +0200 Subject: Fixing "...." Change-Id: I3424e17cfdfb563fdc5882942031deafae8689fe Reviewed-on: https://gerrit.libreoffice.org/78678 Tested-by: Jenkins Reviewed-by: Julien Nabet --- toolkit/source/controls/controlmodelcontainerbase.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'toolkit/source/controls/controlmodelcontainerbase.cxx') diff --git a/toolkit/source/controls/controlmodelcontainerbase.cxx b/toolkit/source/controls/controlmodelcontainerbase.cxx index 97f960462a3b..efbd432b5718 100644 --- a/toolkit/source/controls/controlmodelcontainerbase.cxx +++ b/toolkit/source/controls/controlmodelcontainerbase.cxx @@ -158,19 +158,19 @@ public: static void lcl_throwIllegalArgumentException( ) -{ // throwing is expensive (in terms of code size), thus we hope the compiler does not inline this .... +{ // throwing is expensive (in terms of code size), thus we hope the compiler does not inline this... throw IllegalArgumentException(); } static void lcl_throwNoSuchElementException( ) -{ // throwing is expensive (in terms of code size), thus we hope the compiler does not inline this .... +{ // throwing is expensive (in terms of code size), thus we hope the compiler does not inline this... throw NoSuchElementException(); } static void lcl_throwElementExistException( ) -{ // throwing is expensive (in terms of code size), thus we hope the compiler does not inline this .... +{ // throwing is expensive (in terms of code size), thus we hope the compiler does not inline this... throw ElementExistException(); } -- cgit