Rename
This commit is contained in:
parent
19c9dd0c71
commit
77b325c6ad
5 changed files with 5 additions and 5 deletions
|
@ -179,7 +179,7 @@ public abstract class PointEditorFragment extends BaseOsmAndFragment {
|
|||
}
|
||||
|
||||
@Nullable
|
||||
protected SelectFavoriteCategoryBottomSheet createSelectCategoryDialog() {
|
||||
protected DialogFragment createSelectCategoryDialog() {
|
||||
PointEditor editor = getEditor();
|
||||
if (editor != null) {
|
||||
return SelectFavoriteCategoryBottomSheet.createInstance(editor.getFragmentTag());
|
||||
|
|
|
@ -732,7 +732,7 @@ public abstract class PointEditorFragmentNew extends BaseOsmAndFragment implemen
|
|||
}
|
||||
|
||||
@Nullable
|
||||
protected SelectFavoriteCategoryBottomSheet createSelectCategoryDialog() {
|
||||
protected DialogFragment createSelectCategoryDialog() {
|
||||
PointEditor editor = getEditor();
|
||||
if (editor != null) {
|
||||
return SelectFavoriteCategoryBottomSheet.createInstance(editor.getFragmentTag());
|
||||
|
|
|
@ -21,7 +21,7 @@ public class RtePtEditorFragment extends WptPtEditorFragment {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected SelectFavoriteCategoryBottomSheet createSelectCategoryDialog() {
|
||||
protected DialogFragment createSelectCategoryDialog() {
|
||||
PointEditor editor = getEditor();
|
||||
return editor != null ? SelectFavoriteCategoryBottomSheet.createInstance(editor.getFragmentTag()) : null;
|
||||
}
|
||||
|
|
|
@ -64,7 +64,7 @@ public class WptPtEditorFragment extends PointEditorFragment {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected SelectFavoriteCategoryBottomSheet createSelectCategoryDialog() {
|
||||
protected DialogFragment createSelectCategoryDialog() {
|
||||
WptPtEditor editor = getWptPtEditor();
|
||||
if (editor != null) {
|
||||
SelectFavoriteCategoryBottomSheet selectCategoryDialogFragment = SelectFavoriteCategoryBottomSheet.createInstance(editor.getFragmentTag());
|
||||
|
|
|
@ -78,7 +78,7 @@ public class WptPtEditorFragmentNew extends PointEditorFragmentNew {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected SelectFavoriteCategoryBottomSheet createSelectCategoryDialog() {
|
||||
protected DialogFragment createSelectCategoryDialog() {
|
||||
WptPtEditor editor = getWptPtEditor();
|
||||
if (editor != null) {
|
||||
SelectFavoriteCategoryBottomSheet selectCategoryDialogFragment = SelectFavoriteCategoryBottomSheet.createInstance(editor.getFragmentTag());
|
||||
|
|
Loading…
Reference in a new issue