aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/textinput.rs
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-05-31 12:45:04 -0400
committerCorey Farwell <coreyf@rwell.org>2015-06-02 08:54:44 -0400
commit435e551753c1d693ed6dc69238fc466896ed48e4 (patch)
tree2ab9c3a1e82016472cbb8a47971ad40a2dd68869 /components/script/textinput.rs
parentc63fc4dc13a23cf5b9f8c0972111b3f9436d2143 (diff)
downloadservo-435e551753c1d693ed6dc69238fc466896ed48e4.tar.gz
servo-435e551753c1d693ed6dc69238fc466896ed48e4.zip
Remove `get_` prefix on getters
Part of #6224 I certainly didn't remove all of them; I avoided `unsafe` areas and also `components/script`
Diffstat (limited to 'components/script/textinput.rs')
-rw-r--r--components/script/textinput.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/textinput.rs b/components/script/textinput.rs
index abe74f2f330..59d6752daef 100644
--- a/components/script/textinput.rs
+++ b/components/script/textinput.rs
@@ -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
},