Kaydet (Commit) f8327138 authored tarafından Takeshi Abe's avatar Takeshi Abe

sal_Bool to bool

Change-Id: I788473f88d78cd3818dfed20112fa36cea81de0d
üst 01402f9d
...@@ -103,7 +103,7 @@ public: ...@@ -103,7 +103,7 @@ public:
void CopyPositionInto(SwPosition& rPos, SwDoc & rDoc); void CopyPositionInto(SwPosition& rPos, SwDoc & rDoc);
SwDoc* GetDoc(); SwDoc* GetDoc();
sal_Bool IsValid(); bool IsValid();
}; };
XTextRangeOrNodeIndexPosition::XTextRangeOrNodeIndexPosition() : XTextRangeOrNodeIndexPosition::XTextRangeOrNodeIndexPosition() :
...@@ -193,7 +193,7 @@ SwDoc* XTextRangeOrNodeIndexPosition::GetDoc() ...@@ -193,7 +193,7 @@ SwDoc* XTextRangeOrNodeIndexPosition::GetDoc()
return (NULL != pIndex) ? pIndex->GetNodes().GetDoc() : lcl_GetDocViaTunnel(xRange); return (NULL != pIndex) ? pIndex->GetNodes().GetDoc() : lcl_GetDocViaTunnel(xRange);
} }
sal_Bool XTextRangeOrNodeIndexPosition::IsValid() bool XTextRangeOrNodeIndexPosition::IsValid()
{ {
return ( xRange.is() || (pIndex != NULL) ); return ( xRange.is() || (pIndex != NULL) );
} }
...@@ -233,7 +233,7 @@ public: ...@@ -233,7 +233,7 @@ public:
RedlineInfo* pNextRedline; RedlineInfo* pNextRedline;
/// store whether we expect an adjustment for this redline /// store whether we expect an adjustment for this redline
sal_Bool bNeedsAdjustment; bool bNeedsAdjustment;
}; };
RedlineInfo::RedlineInfo() : RedlineInfo::RedlineInfo() :
...@@ -246,7 +246,7 @@ RedlineInfo::RedlineInfo() : ...@@ -246,7 +246,7 @@ RedlineInfo::RedlineInfo() :
aAnchorEnd(), aAnchorEnd(),
pContentIndex(NULL), pContentIndex(NULL),
pNextRedline(NULL), pNextRedline(NULL),
bNeedsAdjustment( sal_False ) bNeedsAdjustment( false )
{ {
} }
...@@ -262,7 +262,7 @@ RedlineInfo::~RedlineInfo() ...@@ -262,7 +262,7 @@ RedlineInfo::~RedlineInfo()
// //
XMLRedlineImportHelper::XMLRedlineImportHelper( XMLRedlineImportHelper::XMLRedlineImportHelper(
sal_Bool bNoRedlinesPlease, bool bNoRedlinesPlease,
const Reference<XPropertySet> & rModel, const Reference<XPropertySet> & rModel,
const Reference<XPropertySet> & rImportInfo ) : const Reference<XPropertySet> & rImportInfo ) :
sEmpty(), sEmpty(),
...@@ -278,9 +278,9 @@ XMLRedlineImportHelper::XMLRedlineImportHelper( ...@@ -278,9 +278,9 @@ XMLRedlineImportHelper::XMLRedlineImportHelper(
xImportInfoPropertySet(rImportInfo) xImportInfoPropertySet(rImportInfo)
{ {
// check to see if redline mode is handled outside of component // check to see if redline mode is handled outside of component
sal_Bool bHandleShowChanges = sal_True; bool bHandleShowChanges = true;
sal_Bool bHandleRecordChanges = sal_True; bool bHandleRecordChanges = true;
sal_Bool bHandleProtectionKey = sal_True; bool bHandleProtectionKey = true;
if ( xImportInfoPropertySet.is() ) if ( xImportInfoPropertySet.is() )
{ {
Reference<XPropertySetInfo> xInfo = Reference<XPropertySetInfo> xInfo =
...@@ -333,7 +333,7 @@ XMLRedlineImportHelper::~XMLRedlineImportHelper() ...@@ -333,7 +333,7 @@ XMLRedlineImportHelper::~XMLRedlineImportHelper()
else else
{ {
// try if only the adjustment was missing // try if only the adjustment was missing
pInfo->bNeedsAdjustment = sal_False; pInfo->bNeedsAdjustment = false;
if( IsReady(pInfo) ) if( IsReady(pInfo) )
{ {
OSL_FAIL("RedlineInfo without adjustment; now inserted"); OSL_FAIL("RedlineInfo without adjustment; now inserted");
...@@ -355,9 +355,9 @@ XMLRedlineImportHelper::~XMLRedlineImportHelper() ...@@ -355,9 +355,9 @@ XMLRedlineImportHelper::~XMLRedlineImportHelper()
// set redline mode, either to info property set, or directly to // set redline mode, either to info property set, or directly to
// the document // the document
sal_Bool bHandleShowChanges = sal_True; bool bHandleShowChanges = true;
sal_Bool bHandleRecordChanges = sal_True; bool bHandleRecordChanges = true;
sal_Bool bHandleProtectionKey = sal_True; bool bHandleProtectionKey = true;
if ( xImportInfoPropertySet.is() ) if ( xImportInfoPropertySet.is() )
{ {
Reference<XPropertySetInfo> xInfo = Reference<XPropertySetInfo> xInfo =
...@@ -535,7 +535,7 @@ void XMLRedlineImportHelper::SetCursor( ...@@ -535,7 +535,7 @@ void XMLRedlineImportHelper::SetCursor(
} }
// also remember that we expect an adjustment for this redline // also remember that we expect an adjustment for this redline
pInfo->bNeedsAdjustment = sal_True; pInfo->bNeedsAdjustment = true;
} }
else else
{ {
...@@ -576,7 +576,7 @@ void XMLRedlineImportHelper::AdjustStartNodeCursor( ...@@ -576,7 +576,7 @@ void XMLRedlineImportHelper::AdjustStartNodeCursor(
// RedlineInfo found; now set Cursor // RedlineInfo found; now set Cursor
RedlineInfo* pInfo = aFind->second; RedlineInfo* pInfo = aFind->second;
pInfo->bNeedsAdjustment = sal_False; pInfo->bNeedsAdjustment = false;
// if now ready, insert into document // if now ready, insert into document
if( IsReady(pInfo) ) if( IsReady(pInfo) )
...@@ -590,7 +590,7 @@ void XMLRedlineImportHelper::AdjustStartNodeCursor( ...@@ -590,7 +590,7 @@ void XMLRedlineImportHelper::AdjustStartNodeCursor(
} }
inline sal_Bool XMLRedlineImportHelper::IsReady(RedlineInfo* pRedline) inline bool XMLRedlineImportHelper::IsReady(RedlineInfo* pRedline)
{ {
// we can insert a redline if we have start & end, and we don't // we can insert a redline if we have start & end, and we don't
// expect adjustments for either of these // expect adjustments for either of these
......
...@@ -53,7 +53,7 @@ class XMLRedlineImportHelper ...@@ -53,7 +53,7 @@ class XMLRedlineImportHelper
/// if sal_True, no redlines should be inserted into document /// if sal_True, no redlines should be inserted into document
/// (This typically happen when a document is loaded in 'insert'-mode.) /// (This typically happen when a document is loaded in 'insert'-mode.)
sal_Bool bIgnoreRedlines; bool bIgnoreRedlines;
/// save information for saving and reconstruction of the redline mode /// save information for saving and reconstruction of the redline mode
::com::sun::star::uno::Reference< ::com::sun::star::uno::Reference<
...@@ -67,7 +67,7 @@ class XMLRedlineImportHelper ...@@ -67,7 +67,7 @@ class XMLRedlineImportHelper
public: public:
XMLRedlineImportHelper( XMLRedlineImportHelper(
sal_Bool bIgnoreRedlines, /// ignore redlines mode bool bIgnoreRedlines, /// ignore redlines mode
// property sets of model + import info for saving + restoring the // property sets of model + import info for saving + restoring the
// redline mode // redline mode
...@@ -134,7 +134,7 @@ public: ...@@ -134,7 +134,7 @@ public:
private: private:
inline sal_Bool IsReady(RedlineInfo* pRedline); inline bool IsReady(RedlineInfo* pRedline);
void InsertIntoDocument(RedlineInfo* pRedline); void InsertIntoDocument(RedlineInfo* pRedline);
......
...@@ -133,8 +133,8 @@ sal_Int32 ReadThroughComponent( ...@@ -133,8 +133,8 @@ sal_Int32 ReadThroughComponent(
const sal_Char* pFilterName, const sal_Char* pFilterName,
const Sequence<Any>& rFilterArguments, const Sequence<Any>& rFilterArguments,
const OUString& rName, const OUString& rName,
sal_Bool bMustBeSuccessfull, bool bMustBeSuccessfull,
sal_Bool bEncrypted ) bool bEncrypted )
{ {
OSL_ENSURE(xInputStream.is(), "input stream missing"); OSL_ENSURE(xInputStream.is(), "input stream missing");
OSL_ENSURE(xModelComponent.is(), "document missing"); OSL_ENSURE(xModelComponent.is(), "document missing");
...@@ -188,7 +188,7 @@ sal_Int32 ReadThroughComponent( ...@@ -188,7 +188,7 @@ sal_Int32 ReadThroughComponent(
// sax parser sends wrapped exceptions, // sax parser sends wrapped exceptions,
// try to find the original one // try to find the original one
xml::sax::SAXException aSaxEx = *(xml::sax::SAXException*)(&r); xml::sax::SAXException aSaxEx = *(xml::sax::SAXException*)(&r);
sal_Bool bTryChild = sal_True; bool bTryChild = true;
while( bTryChild ) while( bTryChild )
{ {
...@@ -196,7 +196,7 @@ sal_Int32 ReadThroughComponent( ...@@ -196,7 +196,7 @@ sal_Int32 ReadThroughComponent(
if ( aSaxEx.WrappedException >>= aTmp ) if ( aSaxEx.WrappedException >>= aTmp )
aSaxEx = aTmp; aSaxEx = aTmp;
else else
bTryChild = sal_False; bTryChild = false;
} }
packages::zip::ZipIOException aBrokenPackage; packages::zip::ZipIOException aBrokenPackage;
...@@ -303,7 +303,7 @@ sal_Int32 ReadThroughComponent( ...@@ -303,7 +303,7 @@ sal_Int32 ReadThroughComponent(
const sal_Char* pFilterName, const sal_Char* pFilterName,
const Sequence<Any>& rFilterArguments, const Sequence<Any>& rFilterArguments,
const OUString& rName, const OUString& rName,
sal_Bool bMustBeSuccessfull) bool bMustBeSuccessfull)
{ {
OSL_ENSURE(xStorage.is(), "Need storage!"); OSL_ENSURE(xStorage.is(), "Need storage!");
OSL_ENSURE(NULL != pStreamName, "Please, please, give me a name!"); OSL_ENSURE(NULL != pStreamName, "Please, please, give me a name!");
...@@ -362,7 +362,7 @@ sal_Int32 ReadThroughComponent( ...@@ -362,7 +362,7 @@ sal_Int32 ReadThroughComponent(
Any aAny = xProps->getPropertyValue( Any aAny = xProps->getPropertyValue(
OUString( RTL_CONSTASCII_USTRINGPARAM("Encrypted") ) ); OUString( RTL_CONSTASCII_USTRINGPARAM("Encrypted") ) );
sal_Bool bEncrypted = aAny.getValueType() == ::getBooleanCppuType() && bool bEncrypted = aAny.getValueType() == ::getBooleanCppuType() &&
*(sal_Bool *)aAny.getValue(); *(sal_Bool *)aAny.getValue();
uno::Reference <io::XInputStream> xInputStream = xStream->getInputStream(); uno::Reference <io::XInputStream> xInputStream = xStream->getInputStream();
...@@ -903,7 +903,7 @@ sal_uLong XMLReader::Read( SwDoc &rDoc, const String& rBaseURL, SwPaM &rPaM, con ...@@ -903,7 +903,7 @@ sal_uLong XMLReader::Read( SwDoc &rDoc, const String& rBaseURL, SwPaM &rPaM, con
xStorage, xModelComp, "meta.xml", "Meta.xml", xServiceFactory, xStorage, xModelComp, "meta.xml", "Meta.xml", xServiceFactory,
(bOASIS ? "com.sun.star.comp.Writer.XMLOasisMetaImporter" (bOASIS ? "com.sun.star.comp.Writer.XMLOasisMetaImporter"
: "com.sun.star.comp.Writer.XMLMetaImporter"), : "com.sun.star.comp.Writer.XMLMetaImporter"),
aEmptyArgs, rName, sal_False ); aEmptyArgs, rName, false );
sal_uInt32 nWarn2 = 0; sal_uInt32 nWarn2 = 0;
if( !(IsOrganizerMode() || IsBlockMode() || aOpt.IsFmtsOnly() || if( !(IsOrganizerMode() || IsBlockMode() || aOpt.IsFmtsOnly() ||
...@@ -913,21 +913,21 @@ sal_uLong XMLReader::Read( SwDoc &rDoc, const String& rBaseURL, SwPaM &rPaM, con ...@@ -913,21 +913,21 @@ sal_uLong XMLReader::Read( SwDoc &rDoc, const String& rBaseURL, SwPaM &rPaM, con
xStorage, xModelComp, "settings.xml", NULL, xServiceFactory, xStorage, xModelComp, "settings.xml", NULL, xServiceFactory,
(bOASIS ? "com.sun.star.comp.Writer.XMLOasisSettingsImporter" (bOASIS ? "com.sun.star.comp.Writer.XMLOasisSettingsImporter"
: "com.sun.star.comp.Writer.XMLSettingsImporter"), : "com.sun.star.comp.Writer.XMLSettingsImporter"),
aFilterArgs, rName, sal_False ); aFilterArgs, rName, false );
} }
nRet = ReadThroughComponent( nRet = ReadThroughComponent(
xStorage, xModelComp, "styles.xml", NULL, xServiceFactory, xStorage, xModelComp, "styles.xml", NULL, xServiceFactory,
(bOASIS ? "com.sun.star.comp.Writer.XMLOasisStylesImporter" (bOASIS ? "com.sun.star.comp.Writer.XMLOasisStylesImporter"
: "com.sun.star.comp.Writer.XMLStylesImporter"), : "com.sun.star.comp.Writer.XMLStylesImporter"),
aFilterArgs, rName, sal_True ); aFilterArgs, rName, true );
if( !nRet && !(IsOrganizerMode() || aOpt.IsFmtsOnly()) ) if( !nRet && !(IsOrganizerMode() || aOpt.IsFmtsOnly()) )
nRet = ReadThroughComponent( nRet = ReadThroughComponent(
xStorage, xModelComp, "content.xml", "Content.xml", xServiceFactory, xStorage, xModelComp, "content.xml", "Content.xml", xServiceFactory,
(bOASIS ? "com.sun.star.comp.Writer.XMLOasisContentImporter" (bOASIS ? "com.sun.star.comp.Writer.XMLOasisContentImporter"
: "com.sun.star.comp.Writer.XMLContentImporter"), : "com.sun.star.comp.Writer.XMLContentImporter"),
aFilterArgs, rName, sal_True ); aFilterArgs, rName, true );
if( !(IsOrganizerMode() || IsBlockMode() || bInsertMode || if( !(IsOrganizerMode() || IsBlockMode() || bInsertMode ||
aOpt.IsFmtsOnly() ) ) aOpt.IsFmtsOnly() ) )
......
...@@ -238,7 +238,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg, ...@@ -238,7 +238,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg,
} }
// #i69627# // #i69627#
const sal_Bool bOASIS = ( SotStorage::GetVersion( xStg ) > SOFFICE_FILEFORMAT_60 ); const bool bOASIS = ( SotStorage::GetVersion( xStg ) > SOFFICE_FILEFORMAT_60 );
if ( bOASIS && if ( bOASIS &&
docfunc::HasOutlineStyleToBeWrittenAsNormalListStyle( *pDoc ) ) docfunc::HasOutlineStyleToBeWrittenAsNormalListStyle( *pDoc ) )
{ {
...@@ -297,7 +297,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg, ...@@ -297,7 +297,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg,
} }
// export sub streams for package, else full stream into a file // export sub streams for package, else full stream into a file
sal_Bool bWarn = sal_False, bErr = sal_False; bool bWarn = false, bErr = false;
String sWarnFile, sErrFile; String sWarnFile, sErrFile;
// RDF metadata: export if ODF >= 1.2 // RDF metadata: export if ODF >= 1.2
...@@ -324,11 +324,11 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg, ...@@ -324,11 +324,11 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg,
{ /* ignore */ } { /* ignore */ }
catch (uno::Exception &) catch (uno::Exception &)
{ {
bWarn = sal_True; bWarn = true;
} }
} }
sal_Bool bStoreMeta = ( SFX_CREATE_MODE_EMBEDDED != pDoc->GetDocShell()->GetCreateMode() ); bool bStoreMeta = ( SFX_CREATE_MODE_EMBEDDED != pDoc->GetDocShell()->GetCreateMode() );
if ( !bStoreMeta ) if ( !bStoreMeta )
{ {
try try
...@@ -352,7 +352,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg, ...@@ -352,7 +352,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg,
: "com.sun.star.comp.Writer.XMLMetaExporter"), : "com.sun.star.comp.Writer.XMLMetaExporter"),
aEmptyArgs, aProps ) ) aEmptyArgs, aProps ) )
{ {
bWarn = sal_True; bWarn = true;
sWarnFile = String( RTL_CONSTASCII_STRINGPARAM("meta.xml"), sWarnFile = String( RTL_CONSTASCII_STRINGPARAM("meta.xml"),
RTL_TEXTENCODING_ASCII_US ); RTL_TEXTENCODING_ASCII_US );
} }
...@@ -370,7 +370,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg, ...@@ -370,7 +370,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg,
{ {
if( !bWarn ) if( !bWarn )
{ {
bWarn = sal_True; bWarn = true;
sWarnFile = String( RTL_CONSTASCII_STRINGPARAM("settings.xml"), sWarnFile = String( RTL_CONSTASCII_STRINGPARAM("settings.xml"),
RTL_TEXTENCODING_ASCII_US ); RTL_TEXTENCODING_ASCII_US );
} }
...@@ -384,7 +384,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg, ...@@ -384,7 +384,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg,
: "com.sun.star.comp.Writer.XMLStylesExporter"), : "com.sun.star.comp.Writer.XMLStylesExporter"),
aFilterArgs, aProps ) ) aFilterArgs, aProps ) )
{ {
bErr = sal_True; bErr = true;
sErrFile = String( RTL_CONSTASCII_STRINGPARAM("styles.xml"), sErrFile = String( RTL_CONSTASCII_STRINGPARAM("styles.xml"),
RTL_TEXTENCODING_ASCII_US ); RTL_TEXTENCODING_ASCII_US );
} }
...@@ -398,7 +398,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg, ...@@ -398,7 +398,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg,
: "com.sun.star.comp.Writer.XMLContentExporter"), : "com.sun.star.comp.Writer.XMLContentExporter"),
aFilterArgs, aProps ) ) aFilterArgs, aProps ) )
{ {
bErr = sal_True; bErr = true;
sErrFile = String( RTL_CONSTASCII_STRINGPARAM("content.xml"), sErrFile = String( RTL_CONSTASCII_STRINGPARAM("content.xml"),
RTL_TEXTENCODING_ASCII_US ); RTL_TEXTENCODING_ASCII_US );
} }
...@@ -500,7 +500,7 @@ sal_uLong SwXMLWriter::Write( SwPaM& rPaM, SfxMedium& rMed, ...@@ -500,7 +500,7 @@ sal_uLong SwXMLWriter::Write( SwPaM& rPaM, SfxMedium& rMed,
: ((Writer *)this)->Write( rPaM, *rMed.GetOutStream(), pFileName ); : ((Writer *)this)->Write( rPaM, *rMed.GetOutStream(), pFileName );
} }
sal_Bool SwXMLWriter::WriteThroughComponent( bool SwXMLWriter::WriteThroughComponent(
const uno::Reference<XComponent> & xComponent, const uno::Reference<XComponent> & xComponent,
const sal_Char* pStreamName, const sal_Char* pStreamName,
const uno::Reference<lang::XMultiServiceFactory> & rFactory, const uno::Reference<lang::XMultiServiceFactory> & rFactory,
...@@ -517,7 +517,7 @@ sal_Bool SwXMLWriter::WriteThroughComponent( ...@@ -517,7 +517,7 @@ sal_Bool SwXMLWriter::WriteThroughComponent(
pStreamName ); pStreamName );
// open stream // open stream
sal_Bool bRet = sal_False; bool bRet = false;
try try
{ {
OUString sStreamName = OUString::createFromAscii( pStreamName ); OUString sStreamName = OUString::createFromAscii( pStreamName );
...@@ -527,7 +527,7 @@ sal_Bool SwXMLWriter::WriteThroughComponent( ...@@ -527,7 +527,7 @@ sal_Bool SwXMLWriter::WriteThroughComponent(
uno::Reference <beans::XPropertySet > xSet( xStream, uno::UNO_QUERY ); uno::Reference <beans::XPropertySet > xSet( xStream, uno::UNO_QUERY );
if( !xSet.is() ) if( !xSet.is() )
return sal_False; return false;
OUString aMime( RTL_CONSTASCII_USTRINGPARAM("text/xml") ); OUString aMime( RTL_CONSTASCII_USTRINGPARAM("text/xml") );
uno::Any aAny; uno::Any aAny;
...@@ -568,7 +568,7 @@ sal_Bool SwXMLWriter::WriteThroughComponent( ...@@ -568,7 +568,7 @@ sal_Bool SwXMLWriter::WriteThroughComponent(
} }
sal_Bool SwXMLWriter::WriteThroughComponent( bool SwXMLWriter::WriteThroughComponent(
const uno::Reference<io::XOutputStream> & xOutputStream, const uno::Reference<io::XOutputStream> & xOutputStream,
const uno::Reference<XComponent> & xComponent, const uno::Reference<XComponent> & xComponent,
const uno::Reference<XMultiServiceFactory> & rFactory, const uno::Reference<XMultiServiceFactory> & rFactory,
...@@ -604,7 +604,7 @@ sal_Bool SwXMLWriter::WriteThroughComponent( ...@@ -604,7 +604,7 @@ sal_Bool SwXMLWriter::WriteThroughComponent(
OSL_ENSURE( xExporter.is(), OSL_ENSURE( xExporter.is(),
"can't instantiate export filter component" ); "can't instantiate export filter component" );
if( !xExporter.is() ) if( !xExporter.is() )
return sal_False; return false;
RTL_LOGFILE_CONTEXT_TRACE1( aFilterLog, "%s instantiated.", pServiceName ); RTL_LOGFILE_CONTEXT_TRACE1( aFilterLog, "%s instantiated.", pServiceName );
// connect model and filter // connect model and filter
......
...@@ -59,7 +59,7 @@ private: ...@@ -59,7 +59,7 @@ private:
// helper methods to write XML streams // helper methods to write XML streams
/// write a single XML stream into the package /// write a single XML stream into the package
sal_Bool WriteThroughComponent( bool WriteThroughComponent(
/// the component we export /// the component we export
const ::com::sun::star::uno::Reference< const ::com::sun::star::uno::Reference<
::com::sun::star::lang::XComponent> & xComponent, ::com::sun::star::lang::XComponent> & xComponent,
...@@ -77,7 +77,7 @@ private: ...@@ -77,7 +77,7 @@ private:
/// write a single output stream /// write a single output stream
/// (to be called either directly or by WriteThroughComponent(...)) /// (to be called either directly or by WriteThroughComponent(...))
sal_Bool WriteThroughComponent( bool WriteThroughComponent(
const ::com::sun::star::uno::Reference< const ::com::sun::star::uno::Reference<
::com::sun::star::io::XOutputStream> & xOutputStream, ::com::sun::star::io::XOutputStream> & xOutputStream,
const ::com::sun::star::uno::Reference< const ::com::sun::star::uno::Reference<
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment