]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix broken docs in advanded-shortcuts (#8042)
authorPekka Hyvönen <pekka@vaadin.com>
Mon, 19 Dec 2016 13:16:55 +0000 (15:16 +0200)
committerGitHub <noreply@github.com>
Mon, 19 Dec 2016 13:16:55 +0000 (15:16 +0200)
* Fix broken docs in advanded-shortcuts

documentation/advanced/advanced-shortcuts.asciidoc

index 0a999c936de8bd52d2175d628d65564a8e37132d..fa3c92fdae08fa0c86d4f4c35d7ebf9e771b487b 100644 (file)
@@ -154,8 +154,8 @@ public class DefaultButtonExample extends CustomComponent
     HorizontalLayout buttons = new HorizontalLayout();
 
     // Create buttons and define their listener methods.
-    Button ok = new Button("OK", this, "okHandler");
-    Button cancel = new Button("Cancel", this, "cancelHandler");
+    Button ok = new Button("OK", event -> okHandler());
+    Button cancel = new Button("Cancel", event -> cancelHandler());
 
     // Have the unmodified Enter key cause an event
     Action action_ok = new ShortcutAction("Default key",