diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2019-11-23 18:54:42 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-11-23 23:38:07 +0100 |
commit | e6ab01ce532d1db01579b70bd476b2f643522bf9 (patch) | |
tree | 635d070ef835aa7f016a540a486fcb363c721e9b /slideshow | |
parent | 5efa7d4605c8c683bb54a1723d0916e6f0166b52 (diff) |
cppcheck: performing init in init list (sfx2/slideshow/stoc/store)
Change-Id: Iddbd3256aabe9552472b55d3d9b88a3769698de9
Reviewed-on: https://gerrit.libreoffice.org/83576
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/transitions/slidetransitionfactory.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/slideshow/source/engine/transitions/slidetransitionfactory.cxx b/slideshow/source/engine/transitions/slidetransitionfactory.cxx index 7cc5045bcc59..49d440aa2ed7 100644 --- a/slideshow/source/engine/transitions/slidetransitionfactory.cxx +++ b/slideshow/source/engine/transitions/slidetransitionfactory.cxx @@ -95,9 +95,8 @@ class PluginSlideChange: public SlideChangeBase UnoViewSharedPtr mpView; TransitionViewPair( uno::Reference<presentation::XTransition> const & xTransition, const UnoViewSharedPtr& rView ) + : mxTransition(xTransition), mpView(rView) { - mxTransition = xTransition; - mpView = rView; } ~TransitionViewPair() |