Refactoring

This commit is contained in:
M66B
2020-04-12 15:20:00 +02:00
parent c6fde18272
commit 4aeeda6d59
2 changed files with 9 additions and 2 deletions

View File

@@ -3378,7 +3378,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
}
private void onActionAnswer(TupleMessageEx message, View anchor) {
((FragmentMessages) parentFragment).onReply(message, getSelectedText(), anchor);
properties.reply(message, getSelectedText(), anchor);
}
private void onActionMove(TupleMessageEx message, final boolean copy) {
@@ -5199,6 +5199,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
void move(long id, String type);
void reply(TupleMessageEx message, String selected, View anchor);
void finish();
}