mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Remove get_
prefix on getters
Part of #6224 I certainly didn't remove all of them; I avoided `unsafe` areas and also `components/script`
This commit is contained in:
parent
c63fc4dc13
commit
435e551753
21 changed files with 62 additions and 70 deletions
|
@ -315,7 +315,7 @@ impl<T: ClipboardProvider> TextInput<T> {
|
|||
KeyReaction::Nothing
|
||||
},
|
||||
Key::V if is_control_key(mods) => {
|
||||
let contents = self.clipboard_provider.get_clipboard_contents();
|
||||
let contents = self.clipboard_provider.clipboard_contents();
|
||||
self.insert_string(&contents);
|
||||
KeyReaction::DispatchInput
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue