[Libreoffice-commits] .: binfilter/bf_goodies
Caolán McNamara
caolan at kemper.freedesktop.org
Fri Dec 31 05:20:52 PST 2010
binfilter/bf_goodies/source/base2d/goodies_point3d.cxx | 8 ++++----
binfilter/bf_goodies/source/base2d/makefile.mk | 2 --
2 files changed, 4 insertions(+), 6 deletions(-)
New commits:
commit b9220d76ea024346fb8ea3c9de29955b66b9b92c
Author: Caolán McNamara <caolanm at redhat.com>
Date: Fri Dec 31 13:20:46 2010 +0000
WaE: make this dir warning free
diff --git a/binfilter/bf_goodies/source/base2d/goodies_point3d.cxx b/binfilter/bf_goodies/source/base2d/goodies_point3d.cxx
index f083dd3..7b27628 100644
--- a/binfilter/bf_goodies/source/base2d/goodies_point3d.cxx
+++ b/binfilter/bf_goodies/source/base2d/goodies_point3d.cxx
@@ -53,8 +53,8 @@ Point3D& Point3D::operator+= (const Point3D& rPnt)
}
else
{
- V[0] = V[0] + rPnt[0] * V[3];
- V[1] = V[1] + rPnt[1] * V[3];
+ V[0] = V[0] + rPnt[0] * V[2];
+ V[1] = V[1] + rPnt[1] * V[2];
}
}
else
@@ -92,8 +92,8 @@ Point3D& Point3D::operator-= (const Point3D& rPnt)
}
else
{
- V[0] = V[0] - rPnt[0] * V[3];
- V[1] = V[1] - rPnt[1] * V[3];
+ V[0] = V[0] - rPnt[0] * V[2];
+ V[1] = V[1] - rPnt[1] * V[2];
}
}
else
diff --git a/binfilter/bf_goodies/source/base2d/makefile.mk b/binfilter/bf_goodies/source/base2d/makefile.mk
index 72155bb..81141e0 100644
--- a/binfilter/bf_goodies/source/base2d/makefile.mk
+++ b/binfilter/bf_goodies/source/base2d/makefile.mk
@@ -25,8 +25,6 @@
#
#*************************************************************************
-EXTERNAL_WARNINGS_NOT_ERRORS := TRUE
-
PRJ=..$/..$/..
BFPRJ=..$/..
More information about the Libreoffice-commits
mailing list