diff options
author | Mathias Bauer <mba@openoffice.org> | 2002-04-18 13:12:59 +0000 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2002-04-18 13:12:59 +0000 |
commit | ffa4357f7ef6e23283e639011cf5ac572b2815a6 (patch) | |
tree | 2b65badc7631b4068467b1930b1a5b881c83750d /idl/source | |
parent | 127826b1d87b2782f5c2fa46c9fd307819d70f35 (diff) |
#97499#: write image rotation flag to csv
Diffstat (limited to 'idl/source')
-rw-r--r-- | idl/source/objects/slot.cxx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index 0c665eff627e..62c849c71f50 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -2,9 +2,9 @@ * * $RCSfile: slot.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: mba $ $Date: 2002-04-17 12:53:07 $ + * last change: $Author: mba $ $Date: 2002-04-18 14:12:59 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1932,6 +1932,7 @@ void SvMetaSlot::WriteCSV( SvIdlDataBase& rBase, SvStream& rStrm ) WriteBool( GetHasCoreId(), rStrm ); WriteBool( GetHasDialog(), rStrm ); WriteBool( GetReadOnlyDoc(), rStrm ); + WriteBool( GetImageRotation(), rStrm ); rStrm << GetDisableFlags().GetBuffer() << ','; @@ -1943,10 +1944,14 @@ void SvMetaSlot::WriteCSV( SvIdlDataBase& rBase, SvStream& rStrm ) WriteBool( GetToggle(), rStrm ); WriteBool( GetReadonly(), rStrm ); WriteBool( GetExport(), rStrm ); - if( GetRecordPerSet() ) - rStrm << "RecordPerSet" << ','; - else + if( GetRecordPerItem() ) rStrm << "RecordPerItem" << ','; + else if ( GetNoRecord() ) + rStrm << "NoRecord" << ','; + else if ( GetRecordManual() ) + rStrm << "RecordManual" << ','; + else + rStrm << "RecordPerSet" << ','; WriteBool( GetRecordAbsolute(), rStrm ); |