diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-06-14 13:35:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-15 11:56:55 +0200 |
commit | 5a2e09989a4b9746a56f15fe7499067a4327fbae (patch) | |
tree | 846226a33613d2de8621717ced337328649d1155 /sd | |
parent | 7eac94da23f2f4460252eae5fa073fd1d833ba99 (diff) |
cppcheck:redundantCondition
Change-Id: Ib8b6342d1da526df6104125ded546b3f053c448b
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/annotations/annotationwindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/annotations/annotationwindow.cxx b/sd/source/ui/annotations/annotationwindow.cxx index bf7fb8a41efe..587f815e73e1 100644 --- a/sd/source/ui/annotations/annotationwindow.cxx +++ b/sd/source/ui/annotations/annotationwindow.cxx @@ -177,7 +177,7 @@ void AnnotationTextWindow::KeyInput( const KeyEvent& rKeyEvt ) bool bIsProtected = mpAnnotationWindow->IsProtected(); if (!bIsProtected || !EditEngine::DoesKeyChangeText(rKeyEvt) ) - bDone = mpOutlinerView->PostKeyEvent( rKeyEvt ); + bDone = mpOutlinerView->PostKeyEvent( rKeyEvt ); } if (bDone) { |