summaryrefslogtreecommitdiff
path: root/basegfx/source/tuple
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-11-02 13:00:54 +0000
committerKurt Zenker <kz@openoffice.org>2005-11-02 13:00:54 +0000
commit221805dc83a1a95e2abcd111cb6b9c1d2849babc (patch)
treecbc30923448f373a62cfa0cad6111e793d928ba0 /basegfx/source/tuple
parent507ff1b5df1597177cdc88ca808c57329f83438f (diff)
INTEGRATION: CWS canvas02 (1.6.24); FILE MERGED
2005/10/08 13:25:25 thb 1.6.24.2: RESYNC: (1.6-1.7); FILE MERGED 2005/07/28 10:10:22 thb 1.6.24.1: Join from cws_src680_aw024: #i48939# and new rendering subsystem need AW's clipper changes
Diffstat (limited to 'basegfx/source/tuple')
-rw-r--r--basegfx/source/tuple/b3dtuple.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/basegfx/source/tuple/b3dtuple.cxx b/basegfx/source/tuple/b3dtuple.cxx
index 24f7daf56c86..6159702ea778 100644
--- a/basegfx/source/tuple/b3dtuple.cxx
+++ b/basegfx/source/tuple/b3dtuple.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: b3dtuple.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 20:53:01 $
+ * last change: $Author: kz $ $Date: 2005-11-02 14:00:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -48,6 +48,11 @@ namespace { struct EmptyTuple : public rtl::Static<basegfx::B3DTuple, EmptyTuple
namespace basegfx
{
+ const B3DTuple& B3DTuple::getEmptyTuple()
+ {
+ return EmptyTuple::get();
+ }
+
B3DTuple::B3DTuple(const B3ITuple& rTup)
: mfX( rTup.getX() ),
mfY( rTup.getY() ),
@@ -58,11 +63,6 @@ namespace basegfx
{
return B3ITuple(fround(rTup.getX()), fround(rTup.getY()), fround(rTup.getZ()));
}
-
- static const B3DTuple& getEmptyTuple()
- {
- return EmptyTuple::get();
- }
} // end of namespace basegfx
// eof