am 68925c53: Merge "Make the loader thread a Looper and move the package manager updates into that thread as well." into gingerbread
Merge commit '68925c535932b7cbb8aafb4f981f23ef2887a1c4' * commit '68925c535932b7cbb8aafb4f981f23ef2887a1c4': Make the loader thread a Looper and move the package manager
This commit is contained in:
commit
ff68ed0595
|
@ -2281,9 +2281,11 @@ public final class Launcher extends Activity
|
|||
*
|
||||
* Implementation of the method from LauncherModel.Callbacks.
|
||||
*/
|
||||
public void bindAppsRemoved(ArrayList<ApplicationInfo> apps) {
|
||||
public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
|
||||
removeDialog(DIALOG_CREATE_SHORTCUT);
|
||||
mWorkspace.removeItems(apps);
|
||||
if (permanent) {
|
||||
mWorkspace.removeItems(apps);
|
||||
}
|
||||
mAllAppsGrid.removeApps(apps);
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue