summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/app
diff options
context:
space:
mode:
authorRay Chen <raychen@google.com>2011-08-25 23:49:13 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-08-25 23:49:13 -0700
commitca69a7dd02057818b7d3d61979561958d6109758 (patch)
tree54ae69712ce9a04c0b1b099ef37f6946e940d895 /src/com/android/gallery3d/app
parent11e7f198384fc18a624b27980fc65ef65fd3cbcb (diff)
parentd2e19e16729154f4924951cf3c89fd79768538c2 (diff)
downloadandroid_packages_apps_Snap-ca69a7dd02057818b7d3d61979561958d6109758.tar.gz
android_packages_apps_Snap-ca69a7dd02057818b7d3d61979561958d6109758.tar.bz2
android_packages_apps_Snap-ca69a7dd02057818b7d3d61979561958d6109758.zip
Merge "Fix 5205456 After sharing multiple images, the selection should be cleared"
Diffstat (limited to 'src/com/android/gallery3d/app')
-rw-r--r--src/com/android/gallery3d/app/GalleryActionBar.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/gallery3d/app/GalleryActionBar.java b/src/com/android/gallery3d/app/GalleryActionBar.java
index b9b59ee39..db64828da 100644
--- a/src/com/android/gallery3d/app/GalleryActionBar.java
+++ b/src/com/android/gallery3d/app/GalleryActionBar.java
@@ -27,9 +27,11 @@ import android.app.AlertDialog;
import android.app.FragmentTransaction;
import android.content.Context;
import android.content.DialogInterface;
+import android.content.Intent;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ShareActionProvider;
+import android.widget.ShareActionProvider.OnShareTargetSelectedListener;
public class GalleryActionBar implements ActionBar.TabListener {
private static final String TAG = "GalleryActionBar";
@@ -153,8 +155,6 @@ public class GalleryActionBar implements ActionBar.TabListener {
ShareActionProvider shareActionProvider = null;
if (item != null) {
shareActionProvider = (ShareActionProvider) item.getActionProvider();
- shareActionProvider.setShareHistoryFileName(
- ShareActionProvider.DEFAULT_SHARE_HISTORY_FILE_NAME);
}
return shareActionProvider;
}