1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-03 17:59:33 +02:00

cosmetics

This commit is contained in:
Nikolay Pultsin 2013-09-15 08:53:53 +01:00
parent a3f01b0f93
commit 35a100b4d8
2 changed files with 2 additions and 3 deletions

View file

@ -39,6 +39,7 @@ public interface ActionCode {
int CUSTOM_CATALOG_ADD = 31; int CUSTOM_CATALOG_ADD = 31;
int CUSTOM_CATALOG_EDIT = 32; int CUSTOM_CATALOG_EDIT = 32;
int CUSTOM_CATALOG_REMOVE = 33; int CUSTOM_CATALOG_REMOVE = 33;
int SHOW_CATALOGS_FILTER = 34;
int BASKET_CLEAR = 41; int BASKET_CLEAR = 41;
int BASKET_BUY_ALL_BOOKS = 42; int BASKET_BUY_ALL_BOOKS = 42;
@ -56,6 +57,4 @@ public interface ActionCode {
int ADD_BOOK_TO_BASKET = 61; int ADD_BOOK_TO_BASKET = 61;
int REMOVE_BOOK_FROM_BASKET = 62; int REMOVE_BOOK_FROM_BASKET = 62;
int OPEN_BASKET = 63; int OPEN_BASKET = 63;
int LIBRARY_FILTER = 64;
} }

View file

@ -34,7 +34,7 @@ import org.geometerplus.android.fbreader.network.AllCatalogsActivity;
public class AllCatalogsAction extends RootAction { public class AllCatalogsAction extends RootAction {
public AllCatalogsAction(Activity activity) { public AllCatalogsAction(Activity activity) {
super(activity, ActionCode.LIBRARY_FILTER, "allCatalogs", R.drawable.ic_menu_networklibrary); super(activity, ActionCode.SHOW_CATALOGS_FILTER, "allCatalogs", R.drawable.ic_menu_filter);
} }
@Override @Override