summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-07-25 10:06:15 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-07-25 15:02:33 -0400
commitd015fe775886fe489f3dca0cdbf6efc5ece2e33b (patch)
treed4dbaf8c69fc5e03017011500a84c26cf2975f36 /sfx2
parentdcceacb5bc2477b8469e4010add9e3465f007abb (diff)
Let's not use macro for this.
Change-Id: Ic66bcec853a7da638f3ce871749fbec955ce37c5
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/docfile.cxx73
1 files changed, 42 insertions, 31 deletions
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index cdc5faf01656..52e29c3b88cd 100644
--- a/sfx2/source/doc/docfile.cxx
+++ b/sfx2/source/doc/docfile.cxx
@@ -348,21 +348,6 @@ SfxMedium_Impl::~SfxMedium_Impl()
delete pTempFile;
}
-//================================================================
-
-#define IMPL_CTOR(rootVal,URLVal) \
- eError( SVSTREAM_OK ), \
- \
- bRoot( rootVal ), \
- bSetFilter( false ), \
- bTriedStorage( false ), \
- \
- nStorOpenMode( SFX_STREAM_READWRITE ), \
- pURLObj( URLVal ), \
- pInStream(0), \
- pOutStream( 0 )
-
-//------------------------------------------------------------------
void SfxMedium::ResetError()
{
eError = SVSTREAM_OK;
@@ -2488,9 +2473,15 @@ void SfxMedium::Init_Impl()
}
//------------------------------------------------------------------
-SfxMedium::SfxMedium()
-: IMPL_CTOR( false, 0 ), // bRoot, pURLObj
-
+SfxMedium::SfxMedium() :
+ eError( SVSTREAM_OK ),
+ bRoot( false ),
+ bSetFilter( false ),
+ bTriedStorage( false ),
+ nStorOpenMode( SFX_STREAM_READWRITE ),
+ pURLObj(0),
+ pInStream(0),
+ pOutStream(0),
pFilter(0),
pSet(0),
pImp(new SfxMedium_Impl( this ))
@@ -2832,13 +2823,15 @@ void SfxMedium::CompleteReOpen()
pImp->bUseInteractionHandler = bUseInteractionHandler;
}
-//------------------------------------------------------------------
-SfxMedium::SfxMedium
-(
- const String &rName, StreamMode nOpenMode,
- const SfxFilter *pFlt, SfxItemSet *pInSet
-)
-: IMPL_CTOR( false, 0 ), // bRoot, pURLObj
+SfxMedium::SfxMedium(const String &rName, StreamMode nOpenMode, const SfxFilter *pFlt, SfxItemSet *pInSet) :
+ eError( SVSTREAM_OK ),
+ bRoot( false ),
+ bSetFilter( false ),
+ bTriedStorage( false ),
+ nStorOpenMode( SFX_STREAM_READWRITE ),
+ pURLObj(0),
+ pInStream(0),
+ pOutStream(0),
pFilter(pFlt),
pSet( pInSet ),
pImp(new SfxMedium_Impl( this ))
@@ -2849,8 +2842,14 @@ SfxMedium::SfxMedium
}
-SfxMedium::SfxMedium( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArgs )
- : IMPL_CTOR( false, 0 ), // bRoot, pURLObj
+SfxMedium::SfxMedium( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArgs ) :
+ bRoot( false ),
+ bSetFilter( false ),
+ bTriedStorage( false ),
+ nStorOpenMode( SFX_STREAM_READWRITE ),
+ pURLObj(0),
+ pInStream(0),
+ pOutStream(0),
pFilter(0),
pSet(0),
pImp(new SfxMedium_Impl( this ))
@@ -2905,8 +2904,14 @@ SfxMedium::SfxMedium( const ::com::sun::star::uno::Sequence< ::com::sun::star::b
//------------------------------------------------------------------
-SfxMedium::SfxMedium( const uno::Reference < embed::XStorage >& rStor, const String& rBaseURL, const SfxItemSet* p, sal_Bool bRootP )
-: IMPL_CTOR( bRootP, 0 ), // bRoot, pURLObj
+SfxMedium::SfxMedium( const uno::Reference < embed::XStorage >& rStor, const String& rBaseURL, const SfxItemSet* p, sal_Bool bRootP ) :
+ bRoot( bRootP ),
+ bSetFilter( false ),
+ bTriedStorage( false ),
+ nStorOpenMode( SFX_STREAM_READWRITE ),
+ pURLObj(0),
+ pInStream(0),
+ pOutStream(0),
pSet(0),
pImp( new SfxMedium_Impl( this ))
{
@@ -2924,8 +2929,14 @@ SfxMedium::SfxMedium( const uno::Reference < embed::XStorage >& rStor, const Str
GetItemSet()->Put( *p );
}
-SfxMedium::SfxMedium( const uno::Reference < embed::XStorage >& rStor, const String& rBaseURL, const String& rTypeName, const SfxItemSet* p, sal_Bool bRootP )
-: IMPL_CTOR( bRootP, 0 ), // bRoot, pURLObj
+SfxMedium::SfxMedium( const uno::Reference < embed::XStorage >& rStor, const String& rBaseURL, const String& rTypeName, const SfxItemSet* p, sal_Bool bRootP ) :
+ bRoot( bRootP ),
+ bSetFilter( false ),
+ bTriedStorage( false ),
+ nStorOpenMode( SFX_STREAM_READWRITE ),
+ pURLObj(0),
+ pInStream(0),
+ pOutStream(0),
pSet(0),
pImp( new SfxMedium_Impl( this ))
{