From 8b0b7af01071bf89a5bc35486c47bdedcde03208 Mon Sep 17 00:00:00 2001 From: Bill Napier Date: Wed, 15 Sep 2010 14:35:33 -0700 Subject: Fix up some issues with the onCreateContextMenu example in the Notepad tutorial. Change-Id: I8e9329d3b9da507effafb886a33a0a7e6574a7c7 --- docs/html/guide/tutorials/notepad/notepad-ex2.jd | 4 ++-- docs/html/resources/tutorials/notepad/notepad-ex2.jd | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/html/guide/tutorials/notepad/notepad-ex2.jd b/docs/html/guide/tutorials/notepad/notepad-ex2.jd index a945a62f7dae..854731fa0dc5 100644 --- a/docs/html/guide/tutorials/notepad/notepad-ex2.jd +++ b/docs/html/guide/tutorials/notepad/notepad-ex2.jd @@ -87,8 +87,8 @@ Open the Notepadv2 class.

menu callback used for the options menu. Here, we add just one line, which will add a menu item to delete a note. Call menu.add() like so:
-public boolean onCreateContextMenu(Menu menu, View v
-        ContextMenuInfo menuInfo) {
+public void onCreateContextMenu(Menu menu, View v,
+        ContextMenu.ContextMenuInfo menuInfo) {
     super.onCreateContextMenu(menu, v, menuInfo);
     menu.add(0, DELETE_ID, 0, R.string.menu_delete);
 }
diff --git a/docs/html/resources/tutorials/notepad/notepad-ex2.jd b/docs/html/resources/tutorials/notepad/notepad-ex2.jd index 289b5feb186b..499b796c3cd5 100644 --- a/docs/html/resources/tutorials/notepad/notepad-ex2.jd +++ b/docs/html/resources/tutorials/notepad/notepad-ex2.jd @@ -87,8 +87,8 @@ Open the Notepadv2 class.

menu callback used for the options menu. Here, we add just one line, which will add a menu item to delete a note. Call menu.add() like so:
-public boolean onCreateContextMenu(Menu menu, View v
-        ContextMenuInfo menuInfo) {
+public void onCreateContextMenu(Menu menu, View v,
+        ContextMenu.ContextMenuInfo menuInfo) {
     super.onCreateContextMenu(menu, v, menuInfo);
     menu.add(0, DELETE_ID, 0, R.string.menu_delete);
 }
-- cgit v1.2.3-59-g8ed1b