mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Tagging where ItemInfos are created for debug purposes
Change-Id: Iad3ed8ef4f81f4990c027ab46fd25b03b089babb
This commit is contained in:
@@ -51,7 +51,8 @@ class LauncherAppWidgetInfo extends ItemInfo {
|
||||
/**
|
||||
* Constructor for use with AppWidgets that haven't been instantiated yet.
|
||||
*/
|
||||
LauncherAppWidgetInfo(ComponentName providerName) {
|
||||
LauncherAppWidgetInfo(ComponentName providerName, String whereCreated) {
|
||||
super(whereCreated);
|
||||
itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
|
||||
this.providerName = providerName;
|
||||
|
||||
@@ -61,7 +62,8 @@ class LauncherAppWidgetInfo extends ItemInfo {
|
||||
spanY = -1;
|
||||
}
|
||||
|
||||
LauncherAppWidgetInfo(int appWidgetId) {
|
||||
LauncherAppWidgetInfo(int appWidgetId, String whereCreated) {
|
||||
super(whereCreated);
|
||||
itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
|
||||
this.appWidgetId = appWidgetId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user