Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet196.java')
-rw-r--r--examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet196.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet196.java b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet196.java
index f3e5a1764c..f045f67594 100644
--- a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet196.java
+++ b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet196.java
@@ -41,6 +41,7 @@ public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
+ shell.setText("Snippet 196");
shell.setLayout(new GridLayout());
final Text text = new Text(shell, SWT.BORDER);
Font font = new Font(display, "Courier New", 10, SWT.NONE); //$NON-NLS-1$

Back to the top