summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/func/fuoltext.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-02-11 13:20:49 +0200
committerNoel Grandin <noel@peralex.com>2015-02-23 09:26:58 +0200
commitba233e87efddf0a6751b35784dca1c805364ff3b (patch)
tree9d7c8a4256e688c2d47cb6ecf580ac196c4da2c0 /sd/source/ui/func/fuoltext.cxx
parentimport the document properties before the document (diff)
downloadcore-ba233e87efddf0a6751b35784dca1c805364ff3b.tar.gz
core-ba233e87efddf0a6751b35784dca1c805364ff3b.zip
remove unnecessary parenthesis in return statements
found with $ git grep -lP 'return\s*\(\s*\w+\s*\)\s*;' Change-Id: Ic51606877a9edcadeb647c5bf17bc928b69ab60e
Diffstat (limited to 'sd/source/ui/func/fuoltext.cxx')
-rw-r--r--sd/source/ui/func/fuoltext.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/func/fuoltext.cxx b/sd/source/ui/func/fuoltext.cxx
index f68d033c7442..c35371644ac5 100644
--- a/sd/source/ui/func/fuoltext.cxx
+++ b/sd/source/ui/func/fuoltext.cxx
@@ -111,7 +111,7 @@ bool FuOutlineText::MouseButtonDown(const MouseEvent& rMEvt)
bReturn = FuOutline::MouseButtonDown(rMEvt);
}
- return (bReturn);
+ return bReturn;
}
bool FuOutlineText::MouseMove(const MouseEvent& rMEvt)
@@ -123,7 +123,7 @@ bool FuOutlineText::MouseMove(const MouseEvent& rMEvt)
bReturn = FuOutline::MouseMove(rMEvt);
}
- return (bReturn);
+ return bReturn;
}
bool FuOutlineText::MouseButtonUp(const MouseEvent& rMEvt)
@@ -171,7 +171,7 @@ bool FuOutlineText::MouseButtonUp(const MouseEvent& rMEvt)
if( !bReturn )
bReturn = FuOutline::MouseButtonUp(rMEvt);
- return (bReturn);
+ return bReturn;
}
/**
@@ -203,7 +203,7 @@ bool FuOutlineText::KeyInput(const KeyEvent& rKEvt)
}
}
- return (bReturn);
+ return bReturn;
}
void FuOutlineText::UpdateForKeyPress (const KeyEvent& rEvent)