X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/c288f91d875c8a62b5e1de317a2ce24494af6f67..f28faf0c26d1c739d27b718690d31cd41a18046f:/src/com/owncloud/android/ui/activity/FolderPickerActivity.java diff --git a/src/com/owncloud/android/ui/activity/FolderPickerActivity.java b/src/com/owncloud/android/ui/activity/FolderPickerActivity.java index 4b558f00..c9a29cd8 100644 --- a/src/com/owncloud/android/ui/activity/FolderPickerActivity.java +++ b/src/com/owncloud/android/ui/activity/FolderPickerActivity.java @@ -350,9 +350,9 @@ public class FolderPickerActivity extends FileActivity implements FileFragment.C actionBar.setDisplayHomeAsUpEnabled(!atRoot); actionBar.setHomeButtonEnabled(!atRoot); actionBar.setTitle( - atRoot - ? getString(R.string.default_display_name_for_root_folder) - : currentDir.getFileName() + atRoot + ? getString(R.string.default_display_name_for_root_folder) + : currentDir.getFileName() ); } @@ -390,7 +390,7 @@ public class FolderPickerActivity extends FileActivity implements FileFragment.C super.onRemoteOperationFinish(operation, result); if (operation instanceof CreateFolderOperation) { - onCreateFolderOperationFinish((CreateFolderOperation)operation, result); + onCreateFolderOperationFinish((CreateFolderOperation) operation, result); } } @@ -542,9 +542,9 @@ public class FolderPickerActivity extends FileActivity implements FileFragment.C /** - * Shows the information of the {@link OCFile} received as a + * Shows the information of the {@link OCFile} received as a * parameter in the second fragment. - * + * * @param file {@link OCFile} whose details will be shown */ @Override @@ -560,6 +560,17 @@ public class FolderPickerActivity extends FileActivity implements FileFragment.C } + /** + * Shows the share view for sharing {@link OCFile} received as a + * parameter in the second fragment. + * + * @param file {@link OCFile} File to share with + */ + @Override + public void showShareFile(OCFile file) { + + } + @Override public void onRefresh() { refreshList(true);