summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover <steve>2004-02-12 01:07:05 +0000
committerSteve Northover <steve>2004-02-12 01:07:05 +0000
commit50036f030bfec0c861471aa6bee785f64a921da0 (patch)
treedee8905474748df91e044ceda0eced707ab3ad06
parent01a683f904ffa102be3d828ad007a2a1ca78fdc3 (diff)
downloadeclipse.platform.swt-50036f030bfec0c861471aa6bee785f64a921da0.tar.gz
eclipse.platform.swt-50036f030bfec0c861471aa6bee785f64a921da0.tar.xz
eclipse.platform.swt-50036f030bfec0c861471aa6bee785f64a921da0.zip
*** empty log message ***
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java
index 50e0782fe4..a597ddb146 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java
@@ -218,7 +218,8 @@ FormAttachment divide (int value) {
int gcd (int m, int n) {
int temp;
- m = Math.abs (m); n = Math.abs (n);
+ m = Math.abs (m);
+ n = Math.abs (n);
if (m < n) {
temp = m;
m = n;