diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-15 08:54:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-15 11:20:02 +0100 |
commit | 5b51b98b668925f955d50d0fe796762ee05eb487 (patch) | |
tree | 7f534edd3dcb35272e697f5626476668caec9349 /svtools | |
parent | 843fa5ff69f2bc502a6fa35878104d067b2a1e77 (diff) |
loplugin:staticmethods in vcl
Change-Id: I00333677db711761510a35dfae5ce70d61fb9491
Reviewed-on: https://gerrit.libreoffice.org/63397
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/valueset.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/control/valueset.cxx b/svtools/source/control/valueset.cxx index 87f9a61993de..bc37cf818ec2 100644 --- a/svtools/source/control/valueset.cxx +++ b/svtools/source/control/valueset.cxx @@ -1084,7 +1084,7 @@ void ValueSet::ImplTracking( const Point& rPos, bool bRepeat ) if ( ImplScroll( rPos ) && mbSelection ) { maTimer.SetInvokeHandler( LINK( this, ValueSet, ImplTimerHdl ) ); - maTimer.SetTimeout( GetSettings().GetMouseSettings().GetScrollRepeat() ); + maTimer.SetTimeout( MouseSettings::GetScrollRepeat() ); maTimer.Start(); } } |