commit | 0f0d55414e3952a674a1d95295116cda6ff000b6 | [log] [tgz] |
---|---|---|
author | Jeff Hamilton <jham@android.com> | Tue Sep 08 13:21:42 2009 -0500 |
committer | Jeff Hamilton <jham@android.com> | Tue Sep 08 13:22:06 2009 -0500 |
tree | f223e174cd59f8b9817312d1a19e87056bdf9d32 | |
parent | f40ccdf82bf8894aafebf6ede868c70ce2090897 [diff] |
Fix the display of social updates in the fast track, and the hard coded Facebook sources. Change-Id: Ifbb429ad5714bdd78a5571c4adc575b74f928649
diff --git a/src/com/android/contacts/model/HardCodedSources.java b/src/com/android/contacts/model/HardCodedSources.java index 3d9df8f..f844c96 100644 --- a/src/com/android/contacts/model/HardCodedSources.java +++ b/src/com/android/contacts/model/HardCodedSources.java
@@ -630,10 +630,11 @@ * Hard-coded instance of {@link ContactsSource} for Facebook. */ static void buildFacebook(Context context, ContactsSource list) { + // Rely on the fallback source for now, it has a generic set of sources + buildFallback(context, list); + list.accountType = ACCOUNT_TYPE_FACEBOOK; list.readOnly = true; - - // TODO: fill in read-only values that should be visible? } /**
diff --git a/src/com/android/contacts/ui/FastTrackWindow.java b/src/com/android/contacts/ui/FastTrackWindow.java index de43c10..80e2b39 100644 --- a/src/com/android/contacts/ui/FastTrackWindow.java +++ b/src/com/android/contacts/ui/FastTrackWindow.java
@@ -1199,7 +1199,7 @@ }; final int PUBLISHED = 0; - final int TITLE = 0; + final int TITLE = 1; } private interface DataQuery {