summaryrefslogtreecommitdiff
path: root/sw/source/filter/basflt
diff options
context:
space:
mode:
authorMichael Brauer <mib@openoffice.org>2001-03-06 10:17:30 +0000
committerMichael Brauer <mib@openoffice.org>2001-03-06 10:17:30 +0000
commit3358aeb95e37b3e36aba09e90ba396a79c16e4b1 (patch)
tree9cec2961e14e9f9689be8ac681bd7b2a75efcf2e /sw/source/filter/basflt
parent86b7bd8cbfda37f9c21bb05fb1c6c4f050e47ec7 (diff)
organizer support for XML file format
Diffstat (limited to 'sw/source/filter/basflt')
-rw-r--r--sw/source/filter/basflt/shellio.cxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/sw/source/filter/basflt/shellio.cxx b/sw/source/filter/basflt/shellio.cxx
index c4a371e1e24d..c19eb43594ca 100644
--- a/sw/source/filter/basflt/shellio.cxx
+++ b/sw/source/filter/basflt/shellio.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: shellio.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jp $ $Date: 2001-02-08 12:48:41 $
+ * last change: $Author: mib $ $Date: 2001-03-06 11:08:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -182,6 +182,7 @@ ULONG SwReader::Read( const Reader& rOptions )
{
po->SetReadUTF8( FALSE );
po->SetBlockMode( FALSE );
+ po->SetOrganizerMode( FALSE );
return ERR_SWG_FILE_FORMAT_ERROR;
}
@@ -462,6 +463,7 @@ ULONG SwReader::Read( const Reader& rOptions )
po->SetReadUTF8( FALSE );
po->SetBlockMode( FALSE );
+ po->SetOrganizerMode( FALSE );
return nError;
}
@@ -542,7 +544,7 @@ SwReader::SwReader( SfxMedium& rMedium, const String& rFileName, SwPaM& rPam )
Reader::Reader()
: pStrm(0), pStg(0), pMedium(0), pTemplate(0),
bTmplBrowseMode( FALSE ), bInsertMode( FALSE ),
- bReadUTF8( FALSE ), bBlockMode( FALSE )
+ bReadUTF8( FALSE ), bBlockMode( FALSE ), bOrganizerMode( FALSE )
{
}
@@ -1084,6 +1086,9 @@ BOOL SetHTMLTemplate( SwDoc & rDoc )
/*************************************************************************
$Log: not supported by cvs2svn $
+ Revision 1.7 2001/02/08 12:48:41 jp
+ remove using statements
+
Revision 1.6 2001/01/22 13:42:57 mib
Block mode for Readers added