summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdglue.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-11-14 12:42:24 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-11-14 12:42:24 +0000
commitcb5185dbafd8ea9d093402692335bdc48e0d0c49 (patch)
tree4144e58edce75749b691e2f16274737b04e8b658 /svx/source/svdraw/svdglue.cxx
parentf57cb3df7c4f62db197339fab4d133cee42b57a7 (diff)
INTEGRATION: CWS aw024 (1.4.140); FILE MERGED
2006/11/10 03:43:15 aw 1.4.140.6: RESYNC: (1.9-1.10); FILE MERGED 2006/09/21 19:27:30 aw 1.4.140.5: RESYNC: (1.8-1.9); FILE MERGED 2006/07/04 13:14:50 aw 1.4.140.4: RESYNC: (1.6-1.7); FILE MERGED 2005/09/18 05:03:04 aw 1.4.140.3: RESYNC: (1.5-1.6); FILE MERGED 2005/03/24 00:47:21 aw 1.4.140.2: RESYNC: (1.4-1.5); FILE MERGED 2004/12/23 16:52:44 aw 1.4.140.1: #i39525
Diffstat (limited to 'svx/source/svdraw/svdglue.cxx')
-rw-r--r--svx/source/svdraw/svdglue.cxx69
1 files changed, 2 insertions, 67 deletions
diff --git a/svx/source/svdraw/svdglue.cxx b/svx/source/svdraw/svdglue.cxx
index 42b381095524..e8c4b1a07b0c 100644
--- a/svx/source/svdraw/svdglue.cxx
+++ b/svx/source/svdraw/svdglue.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: svdglue.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 13:09:55 $
+ * last change: $Author: ihi $ $Date: 2006-11-14 13:42:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -324,38 +324,6 @@ FASTBOOL SdrGluePoint::IsHit(const Point& rPnt, const OutputDevice& rOut, const
return aRect.IsInside(rPnt);
}
-//BFS01SvStream& operator<<(SvStream& rOut, const SdrGluePoint& rGP)
-//BFS01{
-//BFS01 if (rOut.GetError()!=0) return rOut;
-//BFS01 SdrDownCompat aCompat(rOut,STREAM_WRITE); // Fuer Abwaertskompatibilitaet (Lesen neuer Daten mit altem Code)
-//BFS01#ifdef DBG_UTIL
-//BFS01 aCompat.SetID("SdrGluePoint");
-//BFS01#endif
-//BFS01 rOut<<rGP.aPos;
-//BFS01 rOut<<rGP.nEscDir;
-//BFS01 rOut<<rGP.nId;
-//BFS01 rOut<<rGP.nAlign;
-//BFS01 BOOL bTmp=rGP.bNoPercent; // ueber bTmp, weil sonst (beim casting) im Falle
-//BFS01 rOut<<bTmp; // TRUE nicht 01 sondern FF geschrieben wird.
-//BFS01 return rOut;
-//BFS01}
-
-//BFS01SvStream& operator>>(SvStream& rIn, SdrGluePoint& rGP)
-//BFS01{
-//BFS01 if (rIn.GetError()!=0) return rIn;
-//BFS01 SdrDownCompat aCompat(rIn,STREAM_READ); // Fuer Abwaertskompatibilitaet (Lesen neuer Daten mit altem Code)
-//BFS01#ifdef DBG_UTIL
-//BFS01 aCompat.SetID("SdrGluePoint");
-//BFS01#endif
-//BFS01 BOOL bTmpBool;
-//BFS01 rIn>>rGP.aPos;
-//BFS01 rIn>>rGP.nEscDir;
-//BFS01 rIn>>rGP.nId;
-//BFS01 rIn>>rGP.nAlign;
-//BFS01 rIn>>bTmpBool; rGP.bNoPercent=(bTmpBool!=0);
-//BFS01 return rIn;
-//BFS01}
-
////////////////////////////////////////////////////////////////////////////////////////////////////
void SdrGluePointList::Clear()
@@ -547,37 +515,4 @@ void SdrGluePointList::Shear(const Point& rRef, long nWink, double tn, FASTBOOL
}
}
-//BFS01SvStream& operator<<(SvStream& rOut, const SdrGluePointList& rGPL)
-//BFS01{
-//BFS01 if (rOut.GetError()!=0) return rOut;
-//BFS01 SdrDownCompat aCompat(rOut,STREAM_WRITE); // Fuer Abwaertskompatibilitaet (Lesen neuer Daten mit altem Code)
-//BFS01#ifdef DBG_UTIL
-//BFS01 aCompat.SetID("SdrGluePointList");
-//BFS01#endif
-//BFS01 UINT16 nAnz=rGPL.GetCount();
-//BFS01 rOut<<(UINT16)nAnz;
-//BFS01 for (USHORT nNum=0; nNum<nAnz; nNum++) {
-//BFS01 rOut<<rGPL[nNum];
-//BFS01 }
-//BFS01 return rOut;
-//BFS01}
-
-//BFS01SvStream& operator>>(SvStream& rIn, SdrGluePointList& rGPL)
-//BFS01{
-//BFS01 if (rIn.GetError()!=0) return rIn;
-//BFS01 SdrDownCompat aCompat(rIn,STREAM_READ); // Fuer Abwaertskompatibilitaet (Lesen neuer Daten mit altem Code)
-//BFS01#ifdef DBG_UTIL
-//BFS01 aCompat.SetID("SdrGluePointList");
-//BFS01#endif
-//BFS01 rGPL.Clear();
-//BFS01 UINT16 nAnz=0;
-//BFS01 rIn>>nAnz;
-//BFS01 for (USHORT nNum=0; nNum<nAnz; nNum++) {
-//BFS01 SdrGluePoint aGP;
-//BFS01 rIn>>aGP;
-//BFS01 rGPL.Insert(aGP);
-//BFS01 }
-//BFS01 return rIn;
-//BFS01}
-
// eof