summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Joe Onorato <joeo@android.com> 2010-06-23 16:11:50 -0700
committer Android Git Automerger <android-git-automerger@android.com> 2010-06-23 16:11:50 -0700
commit5d8faa280a9d32ac86147ba17ad7c75db7f36af0 (patch)
tree4453d56fa2eab77731a94adcf4b969c264f88349
parent7d77a0ac899b16fa71af6acf612a664de8813235 (diff)
parent2d8e249854d134f87423646cc96d1cd9507a67b0 (diff)
am 2d8e2498: am 4ca092c7: Merge "Fix bug 2772728 with the suggested fix. I wasn\'t able to reproduce it though." into gingerbread
Merge commit '2d8e249854d134f87423646cc96d1cd9507a67b0' * commit '2d8e249854d134f87423646cc96d1cd9507a67b0': Fix bug 2772728 with the suggested fix. I wasn't able to reproduce it though.
-rw-r--r--services/java/com/android/server/AppWidgetService.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/services/java/com/android/server/AppWidgetService.java b/services/java/com/android/server/AppWidgetService.java
index dc5fd30c15d5..3ed6c12371ed 100644
--- a/services/java/com/android/server/AppWidgetService.java
+++ b/services/java/com/android/server/AppWidgetService.java
@@ -1204,6 +1204,7 @@ class AppWidgetService extends IAppWidgetService.Stub
// If it's currently showing, call back with the new AppWidgetProviderInfo.
for (int j=0; j<M; j++) {
AppWidgetId id = p.instances.get(j);
+ id.views = null;
if (id.host != null && id.host.callbacks != null) {
try {
id.host.callbacks.providerChanged(id.appWidgetId, p.info);