summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-07-01 22:07:40 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-07-01 22:07:40 +0000
commitd872044eeb6786e5c87b47a9b8a36e24c9118a9e (patch)
tree85cf06439c71a80fa8fb4a73f339e32f9f2d5296 /goodies
parentb6035a68916d94cc8123162741200639ed82d362 (diff)
INTEGRATION: CWS impress143 (1.11.18); FILE MERGED
2008/05/26 12:12:23 sj 1.11.18.1: #i89579# applied patch from cmc (removed unused code)
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/filter.vcl/icgm/makefile.mk3
-rw-r--r--goodies/source/filter.vcl/idxf/dxfgrprd.cxx20
2 files changed, 2 insertions, 21 deletions
diff --git a/goodies/source/filter.vcl/icgm/makefile.mk b/goodies/source/filter.vcl/icgm/makefile.mk
index a3d6a5fec706..0d97b3a144ef 100644
--- a/goodies/source/filter.vcl/icgm/makefile.mk
+++ b/goodies/source/filter.vcl/icgm/makefile.mk
@@ -8,7 +8,7 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.11 $
+# $Revision: 1.12 $
#
# This file is part of OpenOffice.org.
#
@@ -51,7 +51,6 @@ SLOFILES = $(SLO)$/cgm.obj \
$(SLO)$/class7.obj \
$(SLO)$/classx.obj \
$(SLO)$/outact.obj \
- $(SLO)$/actmeta.obj \
$(SLO)$/actimpr.obj \
$(SLO)$/bundles.obj \
$(SLO)$/bitmap.obj \
diff --git a/goodies/source/filter.vcl/idxf/dxfgrprd.cxx b/goodies/source/filter.vcl/idxf/dxfgrprd.cxx
index 2ab3b67a0fc3..acebc0f4c092 100644
--- a/goodies/source/filter.vcl/idxf/dxfgrprd.cxx
+++ b/goodies/source/filter.vcl/idxf/dxfgrprd.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: dxfgrprd.cxx,v $
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
* This file is part of OpenOffice.org.
*
@@ -233,19 +233,6 @@ const char * DXFGroupReader::GetS(USHORT nG)
}
}
-void DXFGroupReader::SetI(USHORT nG, long nI)
-{
- if ( ( nG >= 60 ) && ( nG <= 79 ) )
- I60_79[ nG - 60 ] = nI;
- else if ( ( nG >= 90 ) && ( nG <= 99 ) )
- I90_99[ nG - 90 ] = nI;
- else if ( ( nG >= 170 ) && ( nG <= 175 ) )
- I170_175[ nG - 170 ] = nI;
- else if ( ( nG >= 1060 ) && ( nG <= 1079 ) )
- I1060_1079[ nG - 1060 ] = nI;
-}
-
-
void DXFGroupReader::SetF(USHORT nG, double fF)
{
nG-=10;
@@ -285,11 +272,6 @@ void DXFGroupReader::SetS(USHORT nG, const char * sS)
}
-void DXFGroupReader::FillIBuff()
-{
-}
-
-
void DXFGroupReader::ReadLine(char * ptgt)
{
ByteString aStr;