summaryrefslogtreecommitdiff
path: root/include/basegfx/vector/b3dvector.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/basegfx/vector/b3dvector.hxx')
-rw-r--r--include/basegfx/vector/b3dvector.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/basegfx/vector/b3dvector.hxx b/include/basegfx/vector/b3dvector.hxx
index d7e5229b130b..cef199fc8913 100644
--- a/include/basegfx/vector/b3dvector.hxx
+++ b/include/basegfx/vector/b3dvector.hxx
@@ -121,7 +121,7 @@ namespace basegfx
@return The Length of the 3D Vector
*/
- double getLength(void) const
+ double getLength() const
{
double fLen(scalar(*this));
if((0.0 == fLen) || (1.0 == fLen))
@@ -133,7 +133,7 @@ namespace basegfx
@return The XY-Plane Length of the 3D Vector
*/
- double getXYLength(void) const
+ double getXYLength() const
{
double fLen((mfX * mfX) + (mfY * mfY));
if((0.0 == fLen) || (1.0 == fLen))
@@ -145,7 +145,7 @@ namespace basegfx
@return The XZ-Plane Length of the 3D Vector
*/
- double getXZLength(void) const
+ double getXZLength() const
{
double fLen((mfX * mfX) + (mfZ * mfZ)); // #i73040#
if((0.0 == fLen) || (1.0 == fLen))
@@ -157,7 +157,7 @@ namespace basegfx
@return The YZ-Plane Length of the 3D Vector
*/
- double getYZLength(void) const
+ double getYZLength() const
{
double fLen((mfY * mfY) + (mfZ * mfZ));
if((0.0 == fLen) || (1.0 == fLen))