summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2017-03-27 09:49:05 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2017-03-27 09:49:05 -0700
commitde5db1218dfac8a47e42c9eabae01e00c93abf81 (patch)
treee7becaa7c106586fa1dfdf9d3bb8b0f7e2f94065 /src
parentb78e16ed1270e4c0123d3b2d590cd229322bee42 (diff)
parent7b3e9b80ee10d4f3ad2850db6aa410e13eba555a (diff)
downloadandroid_packages_apps_Gallery2-de5db1218dfac8a47e42c9eabae01e00c93abf81.tar.gz
android_packages_apps_Gallery2-de5db1218dfac8a47e42c9eabae01e00c93abf81.tar.bz2
android_packages_apps_Gallery2-de5db1218dfac8a47e42c9eabae01e00c93abf81.zip
Merge "Fix TimeLine picture and video number show wrong"
Diffstat (limited to 'src')
-rwxr-xr-xsrc/com/android/gallery3d/data/TimeLineTitleMediaItem.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/gallery3d/data/TimeLineTitleMediaItem.java b/src/com/android/gallery3d/data/TimeLineTitleMediaItem.java
index ee1bbba72..cb24c669b 100755
--- a/src/com/android/gallery3d/data/TimeLineTitleMediaItem.java
+++ b/src/com/android/gallery3d/data/TimeLineTitleMediaItem.java
@@ -30,8 +30,8 @@ import com.android.gallery3d.util.ThreadPool.Job;
public class TimeLineTitleMediaItem extends MediaItem {
private static final String TAG = "TimeLineTitleMediaItem";
private String mTitle;
- private static int mPhotoCount;
- private static int mVideoCount;
+ private int mPhotoCount;
+ private int mVideoCount;
public TimeLineTitleMediaItem(Path path) {
super(path);