summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sd/source/ui/func/fuconstr.cxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/sd/source/ui/func/fuconstr.cxx b/sd/source/ui/func/fuconstr.cxx
index cc433a3b370f..8719f79e5218 100644
--- a/sd/source/ui/func/fuconstr.cxx
+++ b/sd/source/ui/func/fuconstr.cxx
@@ -219,16 +219,11 @@ bool FuConstruct::MouseButtonUp(const MouseEvent& rMEvt)
/**
* Process keyboard input
- * @returns sal_True if a KeyEvent is being processed, sal_False otherwise
+ * @returns true if a KeyEvent is being processed, false otherwise
*/
bool FuConstruct::KeyInput(const KeyEvent& rKEvt)
{
- bool bReturn = false;
-
- if ( !bReturn )
- bReturn = FuDraw::KeyInput(rKEvt);
-
- return bReturn;
+ return FuDraw::KeyInput(rKEvt);;
}
void FuConstruct::Activate()