summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine <veronika>2003-03-27 18:47:12 +0000
committerVeronika Irvine <veronika>2003-03-27 18:47:12 +0000
commitb7e66e11b222fc82d6124f71c21426df735d941d (patch)
tree01707a88dfd2faf20899ecfa76dc22b5523ee36b
parentf7c3c00ab04c95516dadc4e8b2b99696003436f3 (diff)
downloadeclipse.platform.swt-b7e66e11b222fc82d6124f71c21426df735d941d.tar.gz
eclipse.platform.swt-b7e66e11b222fc82d6124f71c21426df735d941d.tar.xz
eclipse.platform.swt-b7e66e11b222fc82d6124f71c21426df735d941d.zip
remove printlnv2133i
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scrollable.java1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/TableItem.java1
2 files changed, 0 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scrollable.java b/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scrollable.java
index 648c7d5356..a5a40af484 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scrollable.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scrollable.java
@@ -257,7 +257,6 @@ int kEventMouseWheelMoved (int nextHandler, int theEvent, int userData) {
OS.GetEventParameter (theEvent, OS.kEventParamMouseWheelDelta, OS.typeSInt32, null, 4, null, wheelDelta);
bar.setSelection (Math.max (0, bar.getSelection () - bar.getIncrement () * wheelDelta [0]));
Event event = new Event ();
- System.out.println (wheelDelta [0]);
event.detail = wheelDelta [0] > 0 ? SWT.PAGE_UP : SWT.PAGE_DOWN;
bar.sendEvent (SWT.Selection, event);
// Display display = getDisplay ();
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/TableItem.java b/bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/TableItem.java
index 615c007602..dfcb151855 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/TableItem.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/TableItem.java
@@ -286,7 +286,6 @@ public Rectangle getImageBounds (int index) {
OS.GetControlBounds (parent.handle, rect);
x -= rect.left;
y -= rect.top;
- System.out.println(new Rectangle (x, y, width, height));
return new Rectangle (x, y, width, height);
}