summaryrefslogtreecommitdiff
path: root/sc/inc/postit.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-09-30 05:48:28 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-09-30 05:48:28 +0000
commit716636d558e9cc9b910da6d127314d2b20cdf0b6 (patch)
treed266019c3c89a0649074f3290439d74010ec618c /sc/inc/postit.hxx
parentabda8e12d8cd23c2cd1bb870b097eddfdee38825 (diff)
CWS-TOOLING: integrate CWS koheicoderemoval
Diffstat (limited to 'sc/inc/postit.hxx')
-rw-r--r--sc/inc/postit.hxx28
1 files changed, 1 insertions, 27 deletions
diff --git a/sc/inc/postit.hxx b/sc/inc/postit.hxx
index a43599f1eec1..15ca7ec6a521 100644
--- a/sc/inc/postit.hxx
+++ b/sc/inc/postit.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: postit.hxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.7.32.1 $
*
* This file is part of OpenOffice.org.
*
@@ -124,32 +124,6 @@ inline int ScPostIt::operator==( const ScPostIt& rPostIt ) const
&& maItemSet == rPostIt.maItemSet );
}
-inline SvStream& operator>>( SvStream& rStream, ScPostIt& rPostIt )
-{
- // without bShown !!!
-
- CharSet eSet = rStream.GetStreamCharSet();
- String aText = rPostIt.GetText();
- rStream.ReadByteString( aText, eSet );
- rStream.ReadByteString( rPostIt.maStrDate, eSet );
- rStream.ReadByteString( rPostIt.maStrAuthor, eSet );
-
- return rStream;
-}
-
-inline SvStream& operator<<( SvStream& rStream, const ScPostIt& rPostIt )
-{
- // without bShown !!!
-
- CharSet eSet = rStream.GetStreamCharSet();
- String aText = rPostIt.GetText();
- rStream.WriteByteString( aText, eSet );
- rStream.WriteByteString( rPostIt.maStrDate, eSet );
- rStream.WriteByteString( rPostIt.maStrAuthor, eSet );
-
- return rStream;
-}
-
// ============================================================================
#endif