summaryrefslogtreecommitdiffstats
path: root/ui/src/components/mail/listing
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2019-02-26 17:50:47 +0200
committerManos Pitsidianakis <el13635@mail.ntua.gr>2019-06-10 19:40:38 +0300
commite285d1006b6d4a2439c0e5e274d5ca30f1fdc5b6 (patch)
tree3888a0eac8804249f37a08548abd16df7104ef8b /ui/src/components/mail/listing
parent00abea5bff8c746091380a4e4f1e04337bc4f493 (diff)
Open Contacts list from accounts tab
Diffstat (limited to 'ui/src/components/mail/listing')
-rw-r--r--ui/src/components/mail/listing/compact.rs2
-rw-r--r--ui/src/components/mail/listing/plain.rs2
-rw-r--r--ui/src/components/mail/listing/thread.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/ui/src/components/mail/listing/compact.rs b/ui/src/components/mail/listing/compact.rs
index 3c5123e9..f1b5f6c7 100644
--- a/ui/src/components/mail/listing/compact.rs
+++ b/ui/src/components/mail/listing/compact.rs
@@ -381,7 +381,7 @@ impl Component for CompactListing {
}
self.dirty = false;
}
- fn process_event(&mut self, event: &UIEvent, context: &mut Context) -> bool {
+ fn process_event(&mut self, event: &mut UIEvent, context: &mut Context) -> bool {
if let Some(ref mut v) = self.view {
if v.process_event(event, context) {
return true;
diff --git a/ui/src/components/mail/listing/plain.rs b/ui/src/components/mail/listing/plain.rs
index 90c10045..6e7f53db 100644
--- a/ui/src/components/mail/listing/plain.rs
+++ b/ui/src/components/mail/listing/plain.rs
@@ -417,7 +417,7 @@ impl Component for PlainListing {
self.dirty = false;
}
}
- fn process_event(&mut self, event: &UIEvent, context: &mut Context) -> bool {
+ fn process_event(&mut self, event: &mut UIEvent, context: &mut Context) -> bool {
if let Some(ref mut v) = self.view {
if v.process_event(event, context) {
return true;
diff --git a/ui/src/components/mail/listing/thread.rs b/ui/src/components/mail/listing/thread.rs
index 25fd52c9..d6e18661 100644
--- a/ui/src/components/mail/listing/thread.rs
+++ b/ui/src/components/mail/listing/thread.rs
@@ -550,7 +550,7 @@ impl Component for ThreadListing {
self.dirty = false;
}
}
- fn process_event(&mut self, event: &UIEvent, context: &mut Context) -> bool {
+ fn process_event(&mut self, event: &mut UIEvent, context: &mut Context) -> bool {
if let Some(ref mut v) = self.view {
if v.process_event(event, context) {
return true;