summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2009-11-08 17:03:30 -0800
committerJean-Baptiste Queru <jbq@google.com>2009-11-08 17:03:30 -0800
commitbcd20496e0d976ac73c6949f931fc41577e9449c (patch)
tree5f39ff5d9fb4cfaa422880550059c3f7eee55246
parentd68c2f0d03e1a4ea502091289e16b8fe0ec1421f (diff)
parent4d88cbd98e3398e9f8db48c4a054fba467a242ba (diff)
downloadframeworks_base-bcd20496e0d976ac73c6949f931fc41577e9449c.zip
frameworks_base-bcd20496e0d976ac73c6949f931fc41577e9449c.tar.gz
frameworks_base-bcd20496e0d976ac73c6949f931fc41577e9449c.tar.bz2
merge from open-source master
-rw-r--r--core/java/android/app/ListActivity.java8
-rw-r--r--opengl/libagl/egl.cpp2
2 files changed, 5 insertions, 5 deletions
diff --git a/core/java/android/app/ListActivity.java b/core/java/android/app/ListActivity.java
index 5523c18..19b99c8 100644
--- a/core/java/android/app/ListActivity.java
+++ b/core/java/android/app/ListActivity.java
@@ -152,7 +152,7 @@ import android.widget.ListView;
* // Query for all people contacts using the {@link android.provider.Contacts.People} convenience class.
* // Put a managed wrapper around the retrieved cursor so we don't have to worry about
* // requerying or closing it as the activity changes state.
- * mCursor = People.query(this.getContentResolver(), null);
+ * mCursor = this.getContentResolver().query(People.CONTENT_URI, null, null, null, null);
* startManagingCursor(mCursor);
*
* // Now create a new list adapter bound to the cursor.
@@ -161,9 +161,9 @@ import android.widget.ListView;
* this, // Context.
* android.R.layout.two_line_list_item, // Specify the row template to use (here, two columns bound to the two retrieved cursor
* rows).
- * mCursor, // Pass in the cursor to bind to.
- * new String[] {People.NAME, People.COMPANY}, // Array of cursor columns to bind to.
- * new int[]); // Parallel array of which template objects to bind to those columns.
+ * mCursor, // Pass in the cursor to bind to.
+ * new String[] {People.NAME, People.COMPANY}, // Array of cursor columns to bind to.
+ * new int[] {android.R.id.text1, android.R.id.text2}); // Parallel array of which template objects to bind to those columns.
*
* // Bind to our new adapter.
* setListAdapter(adapter);
diff --git a/opengl/libagl/egl.cpp b/opengl/libagl/egl.cpp
index 673c174..8cfa084 100644
--- a/opengl/libagl/egl.cpp
+++ b/opengl/libagl/egl.cpp
@@ -1205,7 +1205,7 @@ static int isAttributeMatching(int i, EGLint attr, EGLint val)
gConfigManagement,
0, NELEM(gConfigManagement)-1,
attr);
- if (index >= 0) {
+ if (cfgMgtIndex >= 0) {
bool match = gConfigManagement[cfgMgtIndex].match(
val, configFound[index].value);
if (match) {