summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/topics
diff options
context:
space:
mode:
authorJoe Malin <jmalin@google.com>2013-08-07 16:43:52 -0700
committerJoe Malin <jmalin@google.com>2013-08-07 16:43:52 -0700
commit81ea1eed829dd3ae99b8d55aa2f026e5c54409bd (patch)
treea2f63a04b62d50a3b057481f614a359b06d2d0dd /docs/html/guide/topics
parent7b60431ba0f69e51b25e5bf92379222d8ef8691b (diff)
downloadframeworks_base-81ea1eed829dd3ae99b8d55aa2f026e5c54409bd.zip
frameworks_base-81ea1eed829dd3ae99b8d55aa2f026e5c54409bd.tar.gz
frameworks_base-81ea1eed829dd3ae99b8d55aa2f026e5c54409bd.tar.bz2
Doc Change: Fix 10224981 error in code snippet
Change-Id: Ia8193989b0ab08f5b0888a4d3f6823018b48ab18
Diffstat (limited to 'docs/html/guide/topics')
-rw-r--r--docs/html/guide/topics/providers/content-provider-creating.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/topics/providers/content-provider-creating.jd b/docs/html/guide/topics/providers/content-provider-creating.jd
index ebd7c25..6ec1e1b 100644
--- a/docs/html/guide/topics/providers/content-provider-creating.jd
+++ b/docs/html/guide/topics/providers/content-provider-creating.jd
@@ -680,7 +680,7 @@ public class ExampleProvider extends ContentProvider
* Notice that the database itself isn't created or opened
* until SQLiteOpenHelper.getWritableDatabase is called
*/
- mOpenHelper = new SQLiteOpenHelper(
+ mOpenHelper = new MainDatabaseHelper(
getContext(), // the application context
DBNAME, // the name of the database)
null, // uses the default SQLite cursor