summaryrefslogtreecommitdiffstats
path: root/src/com/android/wallpaper/model/SystemStaticWallpaperInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/wallpaper/model/SystemStaticWallpaperInfo.java')
-rwxr-xr-xsrc/com/android/wallpaper/model/SystemStaticWallpaperInfo.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/wallpaper/model/SystemStaticWallpaperInfo.java b/src/com/android/wallpaper/model/SystemStaticWallpaperInfo.java
index db34abb..e892956 100755
--- a/src/com/android/wallpaper/model/SystemStaticWallpaperInfo.java
+++ b/src/com/android/wallpaper/model/SystemStaticWallpaperInfo.java
@@ -184,6 +184,7 @@ public class SystemStaticWallpaperInfo extends WallpaperInfo {
}
private SystemStaticWallpaperInfo(Parcel in) {
+ super(in);
mPackageName = in.readString();
mWallpaperId = in.readString();
mCollectionId = in.readString();
@@ -292,6 +293,7 @@ public class SystemStaticWallpaperInfo extends WallpaperInfo {
@Override
public void writeToParcel(Parcel dest, int flags) {
+ super.writeToParcel(dest, flags);
dest.writeString(mPackageName);
dest.writeString(mWallpaperId);
dest.writeString(mCollectionId);