Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet69.java')
-rw-r--r--examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet69.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet69.java b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet69.java
index bf2a1c5daf..bff41c01a6 100644
--- a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet69.java
+++ b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet69.java
@@ -29,6 +29,7 @@ public class Snippet69 {
public static void main (String [] args) {
Display display = new Display ();
Shell shell = new Shell (display);
+ shell.setText("Snippet 69");
Label label = new Label (shell, SWT.NONE | SWT.BORDER);
label.setText ("Name");
Text text = new Text (shell, SWT.NONE);

Back to the top