1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

refactoring: FBReader -> FBReaderApp, FBReaderActivity -> FBReader

This commit is contained in:
Nikolay Pultsin 2010-10-21 20:31:15 +01:00
parent 05ec6c3861
commit d3b6c30fd8
36 changed files with 75 additions and 76 deletions

View file

@ -258,7 +258,7 @@ public class LibraryTabActivity extends TabActivity implements MenuItem.OnMenuIt
}
private Intent getFBReaderIntent(final File file) {
final Intent intent = new Intent(getApplicationContext(), FBReaderActivity.class);
final Intent intent = new Intent(getApplicationContext(), FBReader.class);
intent.setAction(Intent.ACTION_VIEW);
if (file != null) {
intent.setData(Uri.fromFile(file));