summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2010-03-30 15:48:00 +0000
committerSilenio Quarti <silenio>2010-03-30 15:48:00 +0000
commit8c5510ae87e988a052d4c71c1ede4bbedb94113b (patch)
treee7d383dd5786aa9d37c0434712127d17eb2d2bc8 /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
parent4ab73e35230f0a5a5f5205ec466fea696950fd35 (diff)
downloadeclipse.platform.swt-8c5510ae87e988a052d4c71c1ede4bbedb94113b.tar.gz
eclipse.platform.swt-8c5510ae87e988a052d4c71c1ede4bbedb94113b.tar.xz
eclipse.platform.swt-8c5510ae87e988a052d4c71c1ede4bbedb94113b.zip
Bug 307403 - [Accessibility] NPE creating FilteredList on Linux
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
index b2dd25b630..b9240f1e8b 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
@@ -109,7 +109,7 @@ static int checkStyle (int style) {
void addRelation (Control control) {
if (!control.isDescribedByLabel ()) return;
if (labelHandle == 0) return;
- control.getAccessible().addRelation(ACC.RELATION_LABELLED_BY, getAccessible());
+ control._getAccessible().addRelation(ACC.RELATION_LABELLED_BY, _getAccessible());
control.labelRelation = this;
}