This repository was archived by the owner on Mar 4, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ impl DragContext {
98
98
}
99
99
100
100
#[ doc( alias = "gdk_drag_begin" ) ]
101
- pub fn drag_begin ( window : & Window , targets : & [ & Atom ] ) -> Option < DragContext > {
101
+ pub fn drag_begin ( window : & Window , targets : & [ Atom ] ) -> Option < DragContext > {
102
102
skip_assert_initialized ! ( ) ;
103
103
unsafe {
104
104
from_glib_full ( ffi:: gdk_drag_begin (
@@ -112,7 +112,7 @@ impl DragContext {
112
112
pub fn drag_begin_for_device < P : IsA < Device > > (
113
113
window : & Window ,
114
114
device : & P ,
115
- targets : & [ & Atom ] ,
115
+ targets : & [ Atom ] ,
116
116
) -> Option < DragContext > {
117
117
skip_assert_initialized ! ( ) ;
118
118
unsafe {
@@ -130,7 +130,7 @@ impl DragContext {
130
130
pub fn drag_begin_from_point < P : IsA < Device > > (
131
131
window : & Window ,
132
132
device : & P ,
133
- targets : & [ & Atom ] ,
133
+ targets : & [ Atom ] ,
134
134
x_root : i32 ,
135
135
y_root : i32 ,
136
136
) -> Option < DragContext > {
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ glib::wrapper! {
14
14
15
15
impl WaylandWindow {
16
16
#[ doc( alias = "gdk_wayland_selection_add_targets" ) ]
17
- pub fn selection_add_targets ( & self , selection : & Atom , targets : & [ & Atom ] ) {
17
+ pub fn selection_add_targets ( & self , selection : & Atom , targets : & [ Atom ] ) {
18
18
unsafe {
19
19
ffi:: gdk_wayland_selection_add_targets (
20
20
self . to_glib_none ( ) . 0 ,
You can’t perform that action at this time.
0 commit comments