Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Thondapu2017-03-23 11:20:13 +0000
committerArun Thondapu2017-03-23 11:20:13 +0000
commit010d9d278b66159e1bb8026b19814c336766fc4f (patch)
treefaf1982ee35198dd730110fb765060854776a5f1 /bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSSlider.java
parent0f47331a7dde34f84bde5e18855e16f11b458819 (diff)
downloadeclipse.platform.swt-010d9d278b66159e1bb8026b19814c336766fc4f.tar.gz
eclipse.platform.swt-010d9d278b66159e1bb8026b19814c336766fc4f.tar.xz
eclipse.platform.swt-010d9d278b66159e1bb8026b19814c336766fc4f.zip
Bug 502090 - [Cocoa] Bridge support files should be updated to latest
macOS supported version Source changes generated by the MacGenerator using the updated bridge support files from macOS 10.10 Change-Id: Id9b0cffb795bfb0b5ca304efc00ef5d8f23b86af
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSSlider.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSSlider.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSSlider.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSSlider.java
index a41779b598..c894ce44a0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSSlider.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSSlider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2012 IBM Corporation and others.
+ * Copyright (c) 2000, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -36,12 +36,12 @@ public double minValue() {
return OS.objc_msgSend_fpret(this.id, OS.sel_minValue);
}
-public void setMaxValue(double aDouble) {
- OS.objc_msgSend(this.id, OS.sel_setMaxValue_, aDouble);
+public void setMaxValue(double maxValue) {
+ OS.objc_msgSend(this.id, OS.sel_setMaxValue_, maxValue);
}
-public void setMinValue(double aDouble) {
- OS.objc_msgSend(this.id, OS.sel_setMinValue_, aDouble);
+public void setMinValue(double minValue) {
+ OS.objc_msgSend(this.id, OS.sel_setMinValue_, minValue);
}
public static long /*int*/ cellClass() {

Back to the top