Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBilly Biggs2005-09-21 19:01:39 +0000
committerBilly Biggs2005-09-21 19:01:39 +0000
commitf1046d7f1b00c629f654573d3833a980bd5d51bc (patch)
tree2cfae1db678eecbad383dcefcb333c7a3c0b25ce /bundles/org.eclipse.swt.opengl
parent522ceabdea58c7da2721c2b2bc2a5b171866790c (diff)
downloadeclipse.platform.swt-f1046d7f1b00c629f654573d3833a980bd5d51bc.tar.gz
eclipse.platform.swt-f1046d7f1b00c629f654573d3833a980bd5d51bc.tar.xz
eclipse.platform.swt-f1046d7f1b00c629f654573d3833a980bd5d51bc.zip
Use GLData
Diffstat (limited to 'bundles/org.eclipse.swt.opengl')
-rwxr-xr-xbundles/org.eclipse.swt.opengl/carbon/org/eclipse/swt/opengl/GLCanvas.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt.opengl/carbon/org/eclipse/swt/opengl/GLCanvas.java b/bundles/org.eclipse.swt.opengl/carbon/org/eclipse/swt/opengl/GLCanvas.java
index 04ea0a9462..2481701ccb 100755
--- a/bundles/org.eclipse.swt.opengl/carbon/org/eclipse/swt/opengl/GLCanvas.java
+++ b/bundles/org.eclipse.swt.opengl/carbon/org/eclipse/swt/opengl/GLCanvas.java
@@ -21,7 +21,7 @@ public class GLCanvas extends Canvas {
int pixelFormat;
static final int MAX_ATTRIBUTES = 32;
-public GLCanvas (Composite parent, int style, GLFormatData data) {
+public GLCanvas (Composite parent, int style, GLData data) {
super (parent, style);
if (data == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
int aglAttrib [] = new int [MAX_ATTRIBUTES];

Back to the top