summaryrefslogtreecommitdiff
path: root/extensions/source/update/check
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-15 09:05:45 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-15 09:05:45 +0100
commit3d8090f87e68962e3e585dafb27162b021e4732c (patch)
treed8aaa312c7f60c8bce9eb36a4ab869b0cad3b197 /extensions/source/update/check
parent5906792ea5d4039a01cd563a8d32487a0189e680 (diff)
More loplugin:cstylecast: extensions
Change-Id: Ia2f6f15f56b4e32887b04f882a5b62eb9eb81159
Diffstat (limited to 'extensions/source/update/check')
-rw-r--r--extensions/source/update/check/updatehdl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/update/check/updatehdl.cxx b/extensions/source/update/check/updatehdl.cxx
index d00d2f935f53..2320e7cd993b 100644
--- a/extensions/source/update/check/updatehdl.cxx
+++ b/extensions/source/update/check/updatehdl.cxx
@@ -314,7 +314,7 @@ void SAL_CALL UpdateHandler::actionPerformed( awt::ActionEvent const & rEvent )
{
if ( rEvent.ActionCommand == msButtonIDs[i] )
{
- eButton = (DialogControls) i;
+ eButton = static_cast<DialogControls>(i);
break;
}
}