Convert MessageViewFragment to Kotlin

This commit is contained in:
cketti 2022-07-19 17:48:42 +02:00
parent 48847e17ea
commit 87dbccdb51
2 changed files with 623 additions and 708 deletions

View file

@ -40,9 +40,9 @@ public class AttachmentController {
private final AttachmentViewInfo attachment;
AttachmentController(MessagingController controller, MessageViewFragment messageViewFragment,
AttachmentController(Context context, MessagingController controller, MessageViewFragment messageViewFragment,
AttachmentViewInfo attachment) {
this.context = messageViewFragment.getApplicationContext();
this.context = context;
this.controller = controller;
this.messageViewFragment = messageViewFragment;
this.attachment = attachment;