diff options
| author | 2013-05-01 12:21:20 -0400 | |
|---|---|---|
| committer | 2013-05-01 12:21:20 -0400 | |
| commit | bbed0513abb1d98733f0eed5399f4cb195fda55f (patch) | |
| tree | a1db9c9c6ccd0672ef4fc6277fb4c288ab931b09 | |
| parent | 292c979a0f1e503422924421557b146cd28fc0d2 (diff) | |
Contacts Provider Training - fix minor code snippet typos.
Change-Id: I3edf86d276d877914a3d97e596e1bb35d1b1ce1f
| -rw-r--r-- | docs/html/training/contacts-provider/display-contact-badge.jd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/training/contacts-provider/display-contact-badge.jd b/docs/html/training/contacts-provider/display-contact-badge.jd index f08935d1262d..041eb58b6870 100644 --- a/docs/html/training/contacts-provider/display-contact-badge.jd +++ b/docs/html/training/contacts-provider/display-contact-badge.jd @@ -169,8 +169,8 @@ trainingnavtop=true // Gets a content URI for the contact mContactUri = Contacts.getLookupUri( - Cursor.getLong(mIdColumn), - Cursor.getString(mLookupKeyColumn) + mCursor.getLong(mIdColumn), + mCursor.getString(mLookupKeyColumn) ); mBadge.assignContactUri(mContactUri); </pre> @@ -221,7 +221,7 @@ trainingnavtop=true * Assuming the current Cursor position is the contact you want, * gets the thumbnail ID */ - mThumbnailUri = Cursor.getString(mThumbnailColumn); + mThumbnailUri = mCursor.getString(mThumbnailColumn); ... </pre> <p> |