summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-10-16 17:23:11 -0400
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-10-16 17:23:11 -0400
commit7f66dbcec37bdb154db0e7c95c73ecd257bc38c9 (patch)
treeb8a61bd045de42fb1e3f1570e422d50311dfbdec
parentc75348a9384a5310bb34bf02cafd0076630f4a28 (diff)
parentc37381fbeeaa5b8fa77c87e26586525d658a23d7 (diff)
downloadframeworks_base-7f66dbcec37bdb154db0e7c95c73ecd257bc38c9.zip
frameworks_base-7f66dbcec37bdb154db0e7c95c73ecd257bc38c9.tar.gz
frameworks_base-7f66dbcec37bdb154db0e7c95c73ecd257bc38c9.tar.bz2
Merge change Ic37381fb into eclair
* changes: docs: fix doc error in dialog example snippet
-rw-r--r--docs/html/guide/topics/ui/dialogs.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/topics/ui/dialogs.jd b/docs/html/guide/topics/ui/dialogs.jd
index c0c0b1b..4e4ca14 100644
--- a/docs/html/guide/topics/ui/dialogs.jd
+++ b/docs/html/guide/topics/ui/dialogs.jd
@@ -624,7 +624,7 @@ AlertDialog.Builder builder;
AlertDialog alertDialog;
Context mContext = getApplicationContext();
-LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER);
+LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.custom_dialog,
(ViewGroup) findViewById(R.id.layout_root));