Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2007-03-21 20:18:29 +0000
committerCarolyn MacLeod2007-03-21 20:18:29 +0000
commit5cc8edd08f6e6b95dad0c8fa8106f1fa83830fce (patch)
treec9cb2b9140dda0e470f68e0d6578c35d2bf0c625 /examples/org.eclipse.swt.examples.ole.win32
parent4965e6ede4442156113303418ce0aa793a8cd8a9 (diff)
downloadeclipse.platform.swt-5cc8edd08f6e6b95dad0c8fa8106f1fa83830fce.tar.gz
eclipse.platform.swt-5cc8edd08f6e6b95dad0c8fa8106f1fa83830fce.tar.xz
eclipse.platform.swt-5cc8edd08f6e6b95dad0c8fa8106f1fa83830fce.zip
typo - Excel
Diffstat (limited to 'examples/org.eclipse.swt.examples.ole.win32')
-rw-r--r--examples/org.eclipse.swt.examples.ole.win32/src/org/eclipse/swt/examples/ole/win32/OLEExample.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/org.eclipse.swt.examples.ole.win32/src/org/eclipse/swt/examples/ole/win32/OLEExample.java b/examples/org.eclipse.swt.examples.ole.win32/src/org/eclipse/swt/examples/ole/win32/OLEExample.java
index 6a16c9e8b2..65e471c40c 100644
--- a/examples/org.eclipse.swt.examples.ole.win32/src/org/eclipse/swt/examples/ole/win32/OLEExample.java
+++ b/examples/org.eclipse.swt.examples.ole.win32/src/org/eclipse/swt/examples/ole/win32/OLEExample.java
@@ -241,7 +241,7 @@ public class OLEExample {
displayArea.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 3, 1));
Button excelButton = new Button(buttons, SWT.RADIO);
- excelButton.setText("New Exel Sheet");
+ excelButton.setText("New Excel Sheet");
excelButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
if (((Button) e.widget).getSelection())

Back to the top