mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
clippy: Fix dereferenced warnings (#31770)
This commit is contained in:
parent
0cf2caba06
commit
02a0cdd6fa
43 changed files with 92 additions and 96 deletions
|
@ -456,7 +456,7 @@ impl HTMLTextAreaElement {
|
|||
|
||||
#[allow(crown::unrooted_must_root)]
|
||||
fn selection(&self) -> TextControlSelection<Self> {
|
||||
TextControlSelection::new(&self, &self.textinput)
|
||||
TextControlSelection::new(self, &self.textinput)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -656,7 +656,7 @@ impl VirtualMethods for HTMLTextAreaElement {
|
|||
.task_manager()
|
||||
.user_interaction_task_source()
|
||||
.queue_event(
|
||||
&self.upcast(),
|
||||
self.upcast(),
|
||||
atom!("input"),
|
||||
EventBubbles::Bubbles,
|
||||
EventCancelable::NotCancelable,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue