Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet49.java')
-rw-r--r--examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet49.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet49.java b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet49.java
index 40ac375105..db0cc67f01 100644
--- a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet49.java
+++ b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet49.java
@@ -28,6 +28,7 @@ public class Snippet49 {
public static void main (String [] args) {
Display display = new Display ();
final Shell shell = new Shell (display);
+ shell.setText("Snippet 49");
final ToolBar toolBar = new ToolBar (shell, SWT.WRAP);
for (int i=0; i<12; i++) {
ToolItem item = new ToolItem (toolBar, SWT.PUSH);

Back to the top