summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMichael Brauer <mib@openoffice.org>2001-01-22 11:29:52 +0000
committerMichael Brauer <mib@openoffice.org>2001-01-22 11:29:52 +0000
commit08c033b62a6c3a612df07257f058da3843cd4789 (patch)
tree9e1f05bc32be14a33aeab5412dc867f9f36d4d04 /sw
parent7278080b78eeed9e1f2d0119f9261ec22069ac89 (diff)
Block mode for Writers added
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/shellio.hxx6
-rw-r--r--sw/source/filter/writer/writer.cxx13
2 files changed, 12 insertions, 7 deletions
diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx
index 4644f2d6db8e..5642f5049f02 100644
--- a/sw/inc/shellio.hxx
+++ b/sw/inc/shellio.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: shellio.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: jp $ $Date: 2000-12-21 13:49:15 $
+ * last change: $Author: mib $ $Date: 2001-01-22 12:29:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -472,6 +472,8 @@ public:
BOOL bASCII_NoLastLineEnd : 1;
BOOL bUCS2_WithStartChar : 1;
+ BOOL bBlock : 1;
+
Writer();
virtual ~Writer();
diff --git a/sw/source/filter/writer/writer.cxx b/sw/source/filter/writer/writer.cxx
index db2372529df4..cca4e3edf767 100644
--- a/sw/source/filter/writer/writer.cxx
+++ b/sw/source/filter/writer/writer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: writer.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: jp $ $Date: 2000-11-27 19:09:58 $
+ * last change: $Author: mib $ $Date: 2001-01-22 12:29:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -219,7 +219,7 @@ Writer::Writer()
{
bWriteAll = bShowProgress = bUCS2_WithStartChar = TRUE;
bASCII_NoLastLineEnd = bASCII_ParaAsBlanc = bASCII_ParaAsCR =
- bWriteClipboardDoc = bWriteOnlyFirstTable = FALSE;
+ bWriteClipboardDoc = bWriteOnlyFirstTable = bBlock = FALSE;
}
Writer::~Writer()
@@ -245,7 +245,7 @@ void Writer::ResetWriter()
bShowProgress = bUCS2_WithStartChar = TRUE;
bASCII_NoLastLineEnd = bASCII_ParaAsBlanc = bASCII_ParaAsCR =
- bWriteClipboardDoc = bWriteOnlyFirstTable = FALSE;
+ bWriteClipboardDoc = bWriteOnlyFirstTable = bBlock = FALSE;
}
BOOL Writer::CopyNextPam( SwPaM ** ppPam )
@@ -658,11 +658,14 @@ ULONG StgWriter::Write( SwPaM& rPaM, SvStorage& rStg, const String* pFName )
Source Code Control System - Header
- $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/filter/writer/writer.cxx,v 1.6 2000-11-27 19:09:58 jp Exp $
+ $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/filter/writer/writer.cxx,v 1.7 2001-01-22 12:29:52 mib Exp $
Source Code Control System - Update
$Log: not supported by cvs2svn $
+ Revision 1.6 2000/11/27 19:09:58 jp
+ Bug #80732#: AddPutEditEngFontsInAttrPool: use the correct Itempool
+
Revision 1.5 2000/11/20 11:15:52 mib
create impl when adding fonts to pool (required for XML filter)