Kaydet (Commit) ecfc9a61 authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS dba24d (1.23.70); FILE MERGED

2007/12/01 13:41:22 fs 1.23.70.2: RESYNC: (1.23-1.24); FILE MERGED
2007/11/08 14:25:10 fs 1.23.70.1: #i81658# re-factoring of the Copy Table wizard
üst a6692616
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: RtfReader.cxx,v $ * $RCSfile: RtfReader.cxx,v $
* *
* $Revision: 1.24 $ * $Revision: 1.25 $
* *
* last change: $Author: ihi $ $Date: 2007-11-21 16:06:36 $ * last change: $Author: rt $ $Date: 2008-01-30 08:50:34 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -138,8 +138,8 @@ ORTFReader::ORTFReader( SvStream& rIn, ...@@ -138,8 +138,8 @@ ORTFReader::ORTFReader( SvStream& rIn,
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rM, const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rM,
const TColumnVector* pList, const TColumnVector* pList,
const OTypeInfoMap* _pInfoMap) const OTypeInfoMap* _pInfoMap)
: SvRTFParser(rIn) :SvRTFParser(rIn)
,ODatabaseExport(_rxConnection,_rxNumberF,_rM,pList,_pInfoMap) ,ODatabaseExport( _rxConnection, _rxNumberF, _rM, pList, _pInfoMap, rIn )
{ {
DBG_CTOR(ORTFReader,NULL); DBG_CTOR(ORTFReader,NULL);
m_bAppendFirstLine = false; m_bAppendFirstLine = false;
...@@ -154,7 +154,7 @@ ORTFReader::ORTFReader(SvStream& rIn, ...@@ -154,7 +154,7 @@ ORTFReader::ORTFReader(SvStream& rIn,
const OTypeInfoMap* _pInfoMap, const OTypeInfoMap* _pInfoMap,
sal_Bool _bAutoIncrementEnabled) sal_Bool _bAutoIncrementEnabled)
:SvRTFParser(rIn) :SvRTFParser(rIn)
,ODatabaseExport(nRows,_rColumnPositions,_rxNumberF,_rM,pList,_pInfoMap,_bAutoIncrementEnabled) ,ODatabaseExport( nRows, _rColumnPositions, _rxNumberF, _rM, pList, _pInfoMap, _bAutoIncrementEnabled, rIn )
{ {
DBG_CTOR(ORTFReader,NULL); DBG_CTOR(ORTFReader,NULL);
m_bAppendFirstLine = false; m_bAppendFirstLine = false;
...@@ -420,11 +420,12 @@ void ORTFReader::release() ...@@ -420,11 +420,12 @@ void ORTFReader::release()
DBG_CHKTHIS(ORTFReader,NULL); DBG_CHKTHIS(ORTFReader,NULL);
ReleaseRef(); ReleaseRef();
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
OWizTypeSelect* ORTFReader::createPage(Window* _pParent) TypeSelectionPageFactory ORTFReader::getTypeSelectionPageFactory()
{ {
DBG_CHKTHIS(ORTFReader,NULL); DBG_CHKTHIS(ORTFReader,NULL);
return new OWizRTFExtend(_pParent,rInput); return &OWizRTFExtend::Create;
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
......
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