Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet276.java')
-rw-r--r--examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet276.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet276.java b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet276.java
index 9c07d2ffa2..1d1892c3bc 100644
--- a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet276.java
+++ b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet276.java
@@ -28,6 +28,7 @@ public class Snippet276 {
public static void main (String[] args) {
final Display display = new Display ();
Shell shell = new Shell (display);
+ shell.setText("Snippet 276");
shell.setBounds (200, 200, 400, 400);
Label label = new Label (shell, SWT.NONE);
label.setText ("click in shell to print display-relative coordinate");

Back to the top