summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-11-14 15:13:55 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-11-14 15:13:55 +0000
commit946cfa81ac5b4e84114e877684f06774d345847c (patch)
treeb2204a80836ccdcfdffdfb5cd8c9b789d2c4e8b2 /goodies
parent23383f6c73fd2774a1b6e2dff9f0e3f9a090e9ec (diff)
INTEGRATION: CWS aw024 (1.6.214); FILE MERGED
2006/09/22 05:59:25 aw 1.6.214.4: RESYNC: (1.8-1.9); FILE MERGED 2005/11/18 19:45:05 aw 1.6.214.3: RESYNC: (1.7-1.8); FILE MERGED 2005/09/20 04:43:01 aw 1.6.214.2: RESYNC: (1.6-1.7); FILE MERGED 2005/08/04 14:47:07 sj 1.6.214.1: #48467# using GraphicExporter component for exports, graphic filter progress now works now via xStatusIndicater instead of callback mechanism
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/filter.vcl/idxf/dxfgrprd.cxx13
1 files changed, 5 insertions, 8 deletions
diff --git a/goodies/source/filter.vcl/idxf/dxfgrprd.cxx b/goodies/source/filter.vcl/idxf/dxfgrprd.cxx
index 8d2eeff306a4..9de11420fae4 100644
--- a/goodies/source/filter.vcl/idxf/dxfgrprd.cxx
+++ b/goodies/source/filter.vcl/idxf/dxfgrprd.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: dxfgrprd.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 15:49:49 $
+ * last change: $Author: ihi $ $Date: 2006-11-14 16:13:55 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -105,9 +105,7 @@ BOOL DXFReadLine( SvStream& rIStm, ByteString& rStr )
// ------------------
-DXFGroupReader::DXFGroupReader(SvStream & rIStream,
- PFilterCallback pcallback, void * pcallerdata,
- USHORT nminpercent, USHORT nmaxpercent) :
+DXFGroupReader::DXFGroupReader(SvStream & rIStream, USHORT nminpercent, USHORT nmaxpercent ) :
rIS(rIStream)
{
USHORT i;
@@ -118,8 +116,6 @@ DXFGroupReader::DXFGroupReader(SvStream & rIStream,
nLastG=0;
nGCount=0;
- pCallback=pcallback;
- pCallerData=pcallerdata;
nMinPercent=(ULONG)nminpercent;
nMaxPercent=(ULONG)nmaxpercent;
nLastPercent=nMinPercent;
@@ -312,7 +308,7 @@ void DXFGroupReader::ReadLine(char * ptgt)
memcpy( ptgt, aStr.GetBuffer(), nLen );
ptgt[ nLen ] = 0x00;
-
+/*
if ( pCallback )
{
const ULONG nPercent= nMinPercent + (nMaxPercent-nMinPercent)*rIS.Tell() / nFileSize;
@@ -324,6 +320,7 @@ void DXFGroupReader::ReadLine(char * ptgt)
bStatus=FALSE;
}
}
+*/
}