summaryrefslogtreecommitdiff
path: root/svx/source/engine3d/dragmt3d.cxx
diff options
context:
space:
mode:
authorPascal Junck <pjunck@openoffice.org>2004-11-03 09:38:11 +0000
committerPascal Junck <pjunck@openoffice.org>2004-11-03 09:38:11 +0000
commitd1aa608c3350dc45cf82b4e005e38e300f802968 (patch)
tree0cc8454967f170970be6285a6764552d920e5932 /svx/source/engine3d/dragmt3d.cxx
parent6ecf0c5cde2f6911835a456801b2e95685515138 (diff)
INTEGRATION: CWS aw019 (1.3.138); FILE MERGED
2004/10/06 16:18:11 aw 1.3.138.2: #i34831# 2004/09/28 15:53:00 aw 1.3.138.1: #i11190#
Diffstat (limited to 'svx/source/engine3d/dragmt3d.cxx')
-rw-r--r--svx/source/engine3d/dragmt3d.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/svx/source/engine3d/dragmt3d.cxx b/svx/source/engine3d/dragmt3d.cxx
index 077cc6504fb3..9200cf0d4ee3 100644
--- a/svx/source/engine3d/dragmt3d.cxx
+++ b/svx/source/engine3d/dragmt3d.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dragmt3d.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2004-07-12 14:35:11 $
+ * last change: $Author: pjunck $ $Date: 2004-11-03 10:38:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -146,12 +146,12 @@ SV_IMPL_PTRARR(E3dDragMethodUnitGroup, E3dDragMethodUnit*);
E3dDragMethod::E3dDragMethod (
SdrDragView &rView,
const SdrMarkList& rMark,
- E3dDragDetail eDetail,
+ //BFS01E3dDragDetail eDetail,
E3dDragConstraint eConstr,
BOOL bFull)
: SdrDragMethod(rView),
eConstraint(eConstr),
- eDragDetail(eDetail),
+ //BFS01eDragDetail(eDetail),
bMoveFull(bFull),
bMovedAtAll(FALSE)
{
@@ -190,7 +190,7 @@ E3dDragMethod::E3dDragMethod (
{
// Drahtgitterdarstellung fuer Parent-Koodinaten erzeugen
pNewUnit->aWireframePoly.SetPointCount(0);
- p3DObj->CreateWireframe(pNewUnit->aWireframePoly, NULL, eDragDetail);
+ p3DObj->CreateWireframe(pNewUnit->aWireframePoly, NULL /*BFS01, eDragDetail*/);
pNewUnit->aWireframePoly.Transform(pNewUnit->aTransform);
}
@@ -442,7 +442,7 @@ void E3dDragMethod::Mov(const Point& rPnt)
|*
\************************************************************************/
-void E3dDragMethod::DrawXor(ExtOutputDevice& rXOut, FASTBOOL bFull) const
+void E3dDragMethod::DrawXor(XOutputDevice& rXOut, FASTBOOL bFull) const
{
UINT16 nPVCnt = rView.GetPageViewCount();
XPolygon aLine(2);
@@ -490,10 +490,10 @@ TYPEINIT1(E3dDragRotate, E3dDragMethod);
E3dDragRotate::E3dDragRotate(SdrDragView &rView,
const SdrMarkList& rMark,
- E3dDragDetail eDetail,
+ //BFS01E3dDragDetail eDetail,
E3dDragConstraint eConstr,
BOOL bFull)
-: E3dDragMethod(rView, rMark, eDetail, eConstr, bFull)
+: E3dDragMethod(rView, rMark/*BFS01, eDetail*/, eConstr, bFull)
{
// Zentrum aller selektierten Objekte in Augkoordinaten holen
UINT16 nCnt = aGrp.Count();
@@ -671,11 +671,11 @@ TYPEINIT1(E3dDragMove, E3dDragMethod);
E3dDragMove::E3dDragMove(SdrDragView &rView,
const SdrMarkList& rMark,
- E3dDragDetail eDetail,
+ //BFS01E3dDragDetail eDetail,
SdrHdlKind eDrgHdl,
E3dDragConstraint eConstr,
BOOL bFull)
-: E3dDragMethod(rView, rMark, eDetail, eConstr, bFull),
+: E3dDragMethod(rView, rMark, /*BFS01eDetail,*/ eConstr, bFull),
eWhatDragHdl(eDrgHdl)
{
switch(eWhatDragHdl)
@@ -880,7 +880,7 @@ void E3dDragMove::Mov(const Point& rPnt)
{
Hide();
aGrp[nOb]->aWireframePoly.SetPointCount(0);
- aGrp[nOb]->p3DObj->CreateWireframe(aGrp[nOb]->aWireframePoly, NULL, eDragDetail);
+ aGrp[nOb]->p3DObj->CreateWireframe(aGrp[nOb]->aWireframePoly, NULL/*BFS01, eDragDetail*/);
aGrp[nOb]->aWireframePoly.Transform(aGrp[nOb]->aTransform);
Show();
}