diff options
| author | 2010-06-23 16:11:50 -0700 | |
|---|---|---|
| committer | 2010-06-23 16:11:50 -0700 | |
| commit | 5d8faa280a9d32ac86147ba17ad7c75db7f36af0 (patch) | |
| tree | 4453d56fa2eab77731a94adcf4b969c264f88349 | |
| parent | 7d77a0ac899b16fa71af6acf612a664de8813235 (diff) | |
| parent | 2d8e249854d134f87423646cc96d1cd9507a67b0 (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.java | 1 |
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); |