diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-10-22 16:21:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-10-22 21:56:13 +0200 |
commit | c816cb847da9a3302f23e113171c81fed6b319c0 (patch) | |
tree | 59c68cf6d5008e65dbdd379cbbe6fca5a887ee8b /chart2 | |
parent | 7354da6ccfd0492a3f38ff07ce65500ec9f727b7 (diff) |
pvs-studio: V571 Recurring check
Change-Id: I1ad7bcfa557b38488adf26b434433e6bae259f43
Reviewed-on: https://gerrit.libreoffice.org/62190
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/main/ChartController_Window.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/main/ChartController_Window.cxx b/chart2/source/controller/main/ChartController_Window.cxx index 5b3cf24ad57a..104eec4cc067 100644 --- a/chart2/source/controller/main/ChartController_Window.cxx +++ b/chart2/source/controller/main/ChartController_Window.cxx @@ -1312,7 +1312,7 @@ bool ChartController::execute_KeyInput( const KeyEvent& rKEvt ) DrawViewWrapper* pDrawViewWrapper = m_pDrawViewWrapper.get(); auto pChartWindow(GetChartWindow()); - if(!pChartWindow || !pDrawViewWrapper) + if (!pChartWindow || !pDrawViewWrapper) return bReturn; // handle accelerators @@ -1433,7 +1433,7 @@ bool ChartController::execute_KeyInput( const KeyEvent& rKEvt ) // default 1 mm in each direction double fGrowAmountX = 200.0; double fGrowAmountY = 200.0; - if( bAlternate && pChartWindow ) + if (bAlternate) { // together with Alt-key: 1 px in each direction Size aPixelSize = pChartWindow->PixelToLogic( Size( 2, 2 )); @@ -1460,7 +1460,7 @@ bool ChartController::execute_KeyInput( const KeyEvent& rKEvt ) // default 1 mm double fShiftAmountX = 100.0; double fShiftAmountY = 100.0; - if( bAlternate && pChartWindow ) + if (bAlternate) { // together with Alt-key: 1 px Size aPixelSize = pChartWindow->PixelToLogic( Size( 1, 1 )); @@ -1562,7 +1562,7 @@ bool ChartController::execute_KeyInput( const KeyEvent& rKEvt ) bReturn = executeDispatch_Delete(); if( ! bReturn ) { - std::unique_ptr<weld::MessageDialog> xInfoBox(Application::CreateMessageDialog(pChartWindow ? pChartWindow->GetFrameWeld() : nullptr, + std::unique_ptr<weld::MessageDialog> xInfoBox(Application::CreateMessageDialog(pChartWindow->GetFrameWeld(), VclMessageType::Info, VclButtonsType::Ok, SchResId(STR_ACTION_NOTPOSSIBLE))); xInfoBox->run(); |