diff options
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/generic/svborder.cxx | 18 | ||||
-rw-r--r-- | tools/source/ref/pstm.cxx | 58 | ||||
-rw-r--r-- | tools/source/stream/strmunx.cxx | 11 |
3 files changed, 0 insertions, 87 deletions
diff --git a/tools/source/generic/svborder.cxx b/tools/source/generic/svborder.cxx index 0c55c9515f56..6b9f0d636e7f 100644 --- a/tools/source/generic/svborder.cxx +++ b/tools/source/generic/svborder.cxx @@ -30,24 +30,6 @@ #include <tools/svborder.hxx> #include <osl/diagnose.h> -SvBorder::SvBorder( const Rectangle & rOuter, const Rectangle & rInner ) -{ - Rectangle aOuter( rOuter ); - aOuter.Justify(); - Rectangle aInner( rInner ); - if( aInner.IsEmpty() ) - aInner = Rectangle( aOuter.Center(), aOuter.Center() ); - else - aInner.Justify(); - - OSL_ENSURE( aOuter.IsInside( aInner ), - "SvBorder::SvBorder: sal_False == aOuter.IsInside( aInner )" ); - nTop = aInner.Top() - aOuter.Top(); - nRight = aOuter.Right() - aInner.Right(); - nBottom = aOuter.Bottom() - aInner.Bottom(); - nLeft = aInner.Left() - aOuter.Left(); -} - Rectangle & operator += ( Rectangle & rRect, const SvBorder & rBorder ) { // wegen Empty-Rect, GetSize muss als erstes gerufen werden diff --git a/tools/source/ref/pstm.cxx b/tools/source/ref/pstm.cxx index a91b078409cb..4956a6aa46f5 100644 --- a/tools/source/ref/pstm.cxx +++ b/tools/source/ref/pstm.cxx @@ -62,9 +62,6 @@ TYPEINIT0( SvRttiBase ); /****************** SvPersistBaseMemberList ******************************/ SvPersistBaseMemberList::SvPersistBaseMemberList(){} -SvPersistBaseMemberList::SvPersistBaseMemberList( - sal_uInt16 nInitSz, sal_uInt16 nResize ) - : SuperSvPersistBaseMemberList( nInitSz, nResize ){} #define PERSIST_LIST_VER (sal_uInt8)0 #define PERSIST_LIST_DBGUTIL (sal_uInt8)0x80 @@ -200,44 +197,6 @@ SvPersistStream::SvPersistStream } //========================================================================= -SvPersistStream::SvPersistStream -( - SvClassManager & rMgr, /* Alle Factorys, deren Objekt geladen und - gespeichert werdn k"onnen */ - SvStream * pStream, /* Dieser Stream wird als Medium genommen, auf - dem der PersistStream arbeitet */ - const SvPersistStream & rPersStm - /* Wenn PersistStream's verschachtelt werden, - dann ist dies der Parent-Stream. */ -) - : rClassMgr( rMgr ) - , pStm( pStream ) - // Bereiche nicht ueberschneiden, deshalb nur groessere Indexe - , aPUIdx( rPersStm.GetCurMaxIndex() +1 ) - , nStartIdx( rPersStm.GetCurMaxIndex() +1 ) - , pRefStm( &rPersStm ) - , nFlags( 0 ) -/* [Beschreibung] - - Der Konstruktor der Klasse SvPersistStream. Die Objekte rMgr und - pStream d"urfen nicht ver"andert werden, solange sie in einem - SvPersistStream eingesetzt sind. Eine Aussnahme gibt es f"ur - pStream (siehe <SvPersistStream::SetStream>). - Durch diesen Konstruktor wird eine Hierarchiebildung unterst"utzt. - Alle Objekte aus einer Hierarchie m"ussen erst geladen werden, - wenn das erste aus dieser Hierarchie benutzt werden soll. -*/ -{ - bIsWritable = sal_True; - if( pStm ) - { - SetVersion( pStm->GetVersion() ); - SetError( pStm->GetError() ); - SyncSvStream( pStm->Tell() ); - } -} - -//========================================================================= SvPersistStream::~SvPersistStream() /* [Beschreibung] @@ -903,21 +862,4 @@ SvStream& operator >> return rStm; } -//========================================================================= -sal_uIntPtr SvPersistStream::InsertObj( SvPersistBase * pObj ) -{ - sal_uIntPtr nId = aPUIdx.Insert( pObj ); - aPTable.Insert( (sal_uIntPtr)pObj, (void *)nId ); - return nId; -} - -//========================================================================= -sal_uIntPtr SvPersistStream::RemoveObj( SvPersistBase * pObj ) -{ - sal_uIntPtr nIdx = GetIndex( pObj ); - aPUIdx.Remove( nIdx ); - aPTable.Remove( (sal_uIntPtr)pObj ); - return nIdx; -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx index ffb75a9f4bf4..6aedf2dd6064 100644 --- a/tools/source/stream/strmunx.cxx +++ b/tools/source/stream/strmunx.cxx @@ -592,17 +592,6 @@ sal_Bool SvFileStream::LockFile() /************************************************************************* |* -|* SvFileStream::UnlockFile() -|* -*************************************************************************/ - -sal_Bool SvFileStream::UnlockFile() -{ - return UnlockRange( 0UL, 0UL ); -} - -/************************************************************************* -|* |* SvFileStream::Open() |* *************************************************************************/ |