diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-09-05 23:15:37 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-06 09:13:38 +0200 |
commit | c12c84e6d8f26b7c7dfd4d0daa642879b435d2c6 (patch) | |
tree | dc9fb5b02c71a41f5b00e89ab2e03f10b4b5864a /toolkit | |
parent | 3c1c1b8885e76a24b961b2fadbecfb536f423293 (diff) |
Fixing "...."
Change-Id: I3424e17cfdfb563fdc5882942031deafae8689fe
Reviewed-on: https://gerrit.libreoffice.org/78678
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindow.cxx | 2 | ||||
-rw-r--r-- | toolkit/source/controls/accessiblecontrolcontext.cxx | 4 | ||||
-rw-r--r-- | toolkit/source/controls/controlmodelcontainerbase.cxx | 6 | ||||
-rw-r--r-- | toolkit/source/controls/roadmapcontrol.cxx | 4 | ||||
-rw-r--r-- | toolkit/source/controls/unocontrol.cxx | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx index 58afca500b80..38a30298a656 100644 --- a/toolkit/source/awt/vclxwindow.cxx +++ b/toolkit/source/awt/vclxwindow.cxx @@ -2262,7 +2262,7 @@ void VCLXWindow::draw( sal_Int32 nX, sal_Int32 nY ) // #i40647# don't draw here if this is a recursive call // sometimes this is called recursively, because the Update call on the parent // (strangely) triggers another paint. Prevent a stack overflow here - // Yes, this is only fixing symptoms for the moment .... + // Yes, this is only fixing symptoms for the moment... // #i40647# / 2005-01-18 / frank.schoenheit@sun.com if ( !mpImpl->getDrawingOntoParent_ref() ) { diff --git a/toolkit/source/controls/accessiblecontrolcontext.cxx b/toolkit/source/controls/accessiblecontrolcontext.cxx index a72f7694ebf8..39614d0a5916 100644 --- a/toolkit/source/controls/accessiblecontrolcontext.cxx +++ b/toolkit/source/controls/accessiblecontrolcontext.cxx @@ -67,7 +67,7 @@ namespace toolkit OContextEntryGuard aGuard( this ); // retrieve the model of the control - OSL_ENSURE( !m_xControlModel.is(), "OAccessibleControlContext::Init: already know a control model....!???" ); + OSL_ENSURE( !m_xControlModel.is(), "OAccessibleControlContext::Init: already know a control model...!???" ); Reference< awt::XControl > xControl( _rxCreator, UNO_QUERY ); if ( xControl.is() ) @@ -257,7 +257,7 @@ namespace toolkit awt::Rectangle aBounds( 0, 0, 0, 0 ); if ( xWindow.is() ) { - // ugly, but .... though the XWindow has a getPosSize, it is impossible to determine the + // ugly, but... though the XWindow has a getPosSize, it is impossible to determine the // parent which this position/size is relative to. This means we must tunnel UNO and ask the // implementation vcl::Window* pVCLParent = pVCLWindow ? pVCLWindow->GetParent() : nullptr; 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(); } diff --git a/toolkit/source/controls/roadmapcontrol.cxx b/toolkit/source/controls/roadmapcontrol.cxx index ee9aed15d455..427d2fb1bf87 100644 --- a/toolkit/source/controls/roadmapcontrol.cxx +++ b/toolkit/source/controls/roadmapcontrol.cxx @@ -43,12 +43,12 @@ namespace toolkit 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_throwIndexOutOfBoundsException( ) -{ // 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 IndexOutOfBoundsException(); } diff --git a/toolkit/source/controls/unocontrol.cxx b/toolkit/source/controls/unocontrol.cxx index 17aa5d74207d..18018b759c5a 100644 --- a/toolkit/source/controls/unocontrol.cxx +++ b/toolkit/source/controls/unocontrol.cxx @@ -610,8 +610,8 @@ void UnoControl::ImplModelPropertiesChanged( const Sequence< PropertyChangeEvent { SolarMutexGuard aVclGuard; // and now this is the final withdrawal: - // I have no other idea than locking the SolarMutex here.... - // I really hate the fact that VCL is not threadsafe.... + // I have no other idea than locking the SolarMutex here... + // I really hate the fact that VCL is not threadsafe... // Doesn't work for Container! getPeer()->dispose(); |