summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-09-09 10:31:42 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-09-09 10:31:42 +0000
commitab4834003d666c11f10d591f911113d6410c8a14 (patch)
tree84ee13d628e1aa58da122c4d8fcfc1f49edd3718 /goodies
parent62eee7997f79050b40ba605c02aeff6d6d11ad05 (diff)
INTEGRATION: CWS ooo20040815 (1.2.234); FILE MERGED
2004/08/04 12:56:20 waratah 1.2.234.1: #i32569# correct assignment instead of equality in if test
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/filter.vcl/icgm/class1.cxx8
-rw-r--r--goodies/source/filter.vcl/icgm/class3.cxx8
2 files changed, 8 insertions, 8 deletions
diff --git a/goodies/source/filter.vcl/icgm/class1.cxx b/goodies/source/filter.vcl/icgm/class1.cxx
index 86664f72a1ff..b274d1282b99 100644
--- a/goodies/source/filter.vcl/icgm/class1.cxx
+++ b/goodies/source/filter.vcl/icgm/class1.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: class1.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sj $ $Date: 2000-12-15 12:25:01 $
+ * last change: $Author: hr $ $Date: 2004-09-09 11:31:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -128,9 +128,9 @@ void CGM::ImplDoClass1()
pElement->eRealPrecision = RP_FIXED;
if ( nI0 != nI1 )
mbStatus = sal_False;
- if ( nI0 = 16 )
+ if ( nI0 == 16 )
pElement->nRealSize = 4;
- else if ( nI0 = 32 )
+ else if ( nI0 == 32 )
pElement->nRealSize = 8;
else
mbStatus = sal_False;
diff --git a/goodies/source/filter.vcl/icgm/class3.cxx b/goodies/source/filter.vcl/icgm/class3.cxx
index c885b074584d..e8df7eab9d71 100644
--- a/goodies/source/filter.vcl/icgm/class3.cxx
+++ b/goodies/source/filter.vcl/icgm/class3.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: class3.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sj $ $Date: 2000-12-15 12:25:54 $
+ * last change: $Author: hr $ $Date: 2004-09-09 11:31:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -110,9 +110,9 @@ void CGM::ImplDoClass3()
pElement->eVDCRealPrecision = RP_FIXED;
if ( nI0 != nI1 )
mbStatus = sal_False;
- if ( nI0 = 16 )
+ if ( nI0 == 16 )
pElement->nVDCRealSize = 4;
- else if ( nI0 = 32 )
+ else if ( nI0 == 32 )
pElement->nVDCRealSize = 8;
else
mbStatus = sal_False;