summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-09-09 10:31:01 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-09-09 10:31:01 +0000
commit2eab5aac7553bedac168695c580192f6c0979048 (patch)
tree4af1df5b76b7eb78d164d8723ba92ab2dbb056a0 /goodies
parent1dc04788b12123f0ae7c01b80d75bb4f1a367223 (diff)
INTEGRATION: CWS ooo20040815 (1.7.20); FILE MERGED
2004/08/04 12:44:16 waratah 1.7.20.1: #i32569# Order declarations to match header file
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/filter.vcl/icgm/cgm.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/goodies/source/filter.vcl/icgm/cgm.cxx b/goodies/source/filter.vcl/icgm/cgm.cxx
index 491be5f00964..99768500d09d 100644
--- a/goodies/source/filter.vcl/icgm/cgm.cxx
+++ b/goodies/source/filter.vcl/icgm/cgm.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: cgm.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2004-06-17 12:51:25 $
+ * last change: $Author: hr $ $Date: 2004-09-09 11:31:01 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -102,11 +102,11 @@ void CGM::ImplCGMInit()
// ---------------------------------------------------------------
CGM::CGM( sal_uInt32 nMode ) :
- mnMode ( nMode ),
mpGraphic ( NULL ), //
mpCommentOut ( NULL ), //
mbStatus ( sal_True ),
- mpOutAct ( new CGMOutAct( *this ) )
+ mpOutAct ( new CGMOutAct( *this ) ),
+ mnMode ( nMode )
{
ImplCGMInit();
};
@@ -116,11 +116,11 @@ CGM::CGM( sal_uInt32 nMode ) :
#ifdef CGM_EXPORT_IMPRESS
CGM::CGM( sal_uInt32 nMode, uno::Reference< frame::XModel > & rModel ) :
- mnMode ( nMode ),
mpGraphic ( NULL ),
mpCommentOut ( NULL ),
mbStatus ( sal_True ),
- mpOutAct ( new CGMImpressOutAct( *this, rModel ) )
+ mpOutAct ( new CGMImpressOutAct( *this, rModel ) ),
+ mnMode ( nMode )
{
mnMode |= CGM_EXPORT_IMPRESS;
ImplCGMInit();
@@ -131,12 +131,12 @@ CGM::CGM( sal_uInt32 nMode, uno::Reference< frame::XModel > & rModel ) :
#ifdef CGM_EXPORT_META
CGM::CGM( sal_uInt32 nMode, Graphic& rGraphic ) :
- mnMode ( nMode ),
mpGraphic ( &rGraphic ),
mpCommentOut ( NULL ),
mbStatus ( sal_True ),
- mpGDIMetaFile ( new GDIMetaFile ),
- mpOutAct ( new CGMMetaOutAct( *this ) )
+ mpOutAct ( new CGMMetaOutAct( *this ) ),
+ mnMode ( nMode ),
+ mpGDIMetaFile ( new GDIMetaFile )
{
ImplCGMInit();
mpVirDev = new VirtualDevice();