Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

Commit 76f82a5

Browse files
Merge pull request #208 from EPashkin/restore_callback_guard
Revert "Remove callback_guard"
2 parents ac4653d + 86f56cb commit 76f82a5

22 files changed

+98
-22
lines changed

src/auto/app_launch_context.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -125,6 +125,7 @@ impl<O: IsA<AppLaunchContext> + IsA<glib::object::Object>> AppLaunchContextExt f
125125

126126
unsafe extern "C" fn notify_display_trampoline<P>(this: *mut ffi::GdkAppLaunchContext, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
127127
where P: IsA<AppLaunchContext> {
128+
callback_guard!();
128129
let f: &&(Fn(&P) + 'static) = transmute(f);
129130
f(&AppLaunchContext::from_glib_borrow(this).downcast_unchecked())
130131
}

src/auto/cursor.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -131,12 +131,14 @@ impl<O: IsA<Cursor> + IsA<glib::object::Object>> CursorExt for O {
131131

132132
unsafe extern "C" fn notify_cursor_type_trampoline<P>(this: *mut ffi::GdkCursor, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
133133
where P: IsA<Cursor> {
134+
callback_guard!();
134135
let f: &&(Fn(&P) + 'static) = transmute(f);
135136
f(&Cursor::from_glib_borrow(this).downcast_unchecked())
136137
}
137138

138139
unsafe extern "C" fn notify_display_trampoline<P>(this: *mut ffi::GdkCursor, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
139140
where P: IsA<Cursor> {
141+
callback_guard!();
140142
let f: &&(Fn(&P) + 'static) = transmute(f);
141143
f(&Cursor::from_glib_borrow(this).downcast_unchecked())
142144
}

src/auto/device.rs

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -616,109 +616,126 @@ impl<O: IsA<Device> + IsA<glib::object::Object>> DeviceExt for O {
616616

617617
unsafe extern "C" fn changed_trampoline<P>(this: *mut ffi::GdkDevice, f: glib_ffi::gpointer)
618618
where P: IsA<Device> {
619+
callback_guard!();
619620
let f: &&(Fn(&P) + 'static) = transmute(f);
620621
f(&Device::from_glib_borrow(this).downcast_unchecked())
621622
}
622623

623624
#[cfg(any(feature = "v3_22", feature = "dox"))]
624625
unsafe extern "C" fn tool_changed_trampoline<P>(this: *mut ffi::GdkDevice, tool: *mut ffi::GdkDeviceTool, f: glib_ffi::gpointer)
625626
where P: IsA<Device> {
627+
callback_guard!();
626628
let f: &&(Fn(&P, &DeviceTool) + 'static) = transmute(f);
627629
f(&Device::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(tool))
628630
}
629631

630632
unsafe extern "C" fn notify_associated_device_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
631633
where P: IsA<Device> {
634+
callback_guard!();
632635
let f: &&(Fn(&P) + 'static) = transmute(f);
633636
f(&Device::from_glib_borrow(this).downcast_unchecked())
634637
}
635638

636639
#[cfg(any(feature = "v3_22", feature = "dox"))]
637640
unsafe extern "C" fn notify_axes_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
638641
where P: IsA<Device> {
642+
callback_guard!();
639643
let f: &&(Fn(&P) + 'static) = transmute(f);
640644
f(&Device::from_glib_borrow(this).downcast_unchecked())
641645
}
642646

643647
unsafe extern "C" fn notify_device_manager_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
644648
where P: IsA<Device> {
649+
callback_guard!();
645650
let f: &&(Fn(&P) + 'static) = transmute(f);
646651
f(&Device::from_glib_borrow(this).downcast_unchecked())
647652
}
648653

649654
unsafe extern "C" fn notify_display_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
650655
where P: IsA<Device> {
656+
callback_guard!();
651657
let f: &&(Fn(&P) + 'static) = transmute(f);
652658
f(&Device::from_glib_borrow(this).downcast_unchecked())
653659
}
654660

655661
unsafe extern "C" fn notify_has_cursor_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
656662
where P: IsA<Device> {
663+
callback_guard!();
657664
let f: &&(Fn(&P) + 'static) = transmute(f);
658665
f(&Device::from_glib_borrow(this).downcast_unchecked())
659666
}
660667

661668
unsafe extern "C" fn notify_input_mode_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
662669
where P: IsA<Device> {
670+
callback_guard!();
663671
let f: &&(Fn(&P) + 'static) = transmute(f);
664672
f(&Device::from_glib_borrow(this).downcast_unchecked())
665673
}
666674

667675
unsafe extern "C" fn notify_input_source_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
668676
where P: IsA<Device> {
677+
callback_guard!();
669678
let f: &&(Fn(&P) + 'static) = transmute(f);
670679
f(&Device::from_glib_borrow(this).downcast_unchecked())
671680
}
672681

673682
unsafe extern "C" fn notify_n_axes_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
674683
where P: IsA<Device> {
684+
callback_guard!();
675685
let f: &&(Fn(&P) + 'static) = transmute(f);
676686
f(&Device::from_glib_borrow(this).downcast_unchecked())
677687
}
678688

679689
unsafe extern "C" fn notify_name_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
680690
where P: IsA<Device> {
691+
callback_guard!();
681692
let f: &&(Fn(&P) + 'static) = transmute(f);
682693
f(&Device::from_glib_borrow(this).downcast_unchecked())
683694
}
684695

685696
#[cfg(any(feature = "v3_20", feature = "dox"))]
686697
unsafe extern "C" fn notify_num_touches_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
687698
where P: IsA<Device> {
699+
callback_guard!();
688700
let f: &&(Fn(&P) + 'static) = transmute(f);
689701
f(&Device::from_glib_borrow(this).downcast_unchecked())
690702
}
691703

692704
#[cfg(any(feature = "v3_16", feature = "dox"))]
693705
unsafe extern "C" fn notify_product_id_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
694706
where P: IsA<Device> {
707+
callback_guard!();
695708
let f: &&(Fn(&P) + 'static) = transmute(f);
696709
f(&Device::from_glib_borrow(this).downcast_unchecked())
697710
}
698711

699712
#[cfg(any(feature = "v3_20", feature = "dox"))]
700713
unsafe extern "C" fn notify_seat_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
701714
where P: IsA<Device> {
715+
callback_guard!();
702716
let f: &&(Fn(&P) + 'static) = transmute(f);
703717
f(&Device::from_glib_borrow(this).downcast_unchecked())
704718
}
705719

706720
#[cfg(any(feature = "v3_22", feature = "dox"))]
707721
unsafe extern "C" fn notify_tool_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
708722
where P: IsA<Device> {
723+
callback_guard!();
709724
let f: &&(Fn(&P) + 'static) = transmute(f);
710725
f(&Device::from_glib_borrow(this).downcast_unchecked())
711726
}
712727

713728
unsafe extern "C" fn notify_type_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
714729
where P: IsA<Device> {
730+
callback_guard!();
715731
let f: &&(Fn(&P) + 'static) = transmute(f);
716732
f(&Device::from_glib_borrow(this).downcast_unchecked())
717733
}
718734

719735
#[cfg(any(feature = "v3_16", feature = "dox"))]
720736
unsafe extern "C" fn notify_vendor_id_trampoline<P>(this: *mut ffi::GdkDevice, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
721737
where P: IsA<Device> {
738+
callback_guard!();
722739
let f: &&(Fn(&P) + 'static) = transmute(f);
723740
f(&Device::from_glib_borrow(this).downcast_unchecked())
724741
}

src/auto/device_manager.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -99,24 +99,28 @@ impl<O: IsA<DeviceManager> + IsA<glib::object::Object>> DeviceManagerExt for O {
9999

100100
unsafe extern "C" fn device_added_trampoline<P>(this: *mut ffi::GdkDeviceManager, device: *mut ffi::GdkDevice, f: glib_ffi::gpointer)
101101
where P: IsA<DeviceManager> {
102+
callback_guard!();
102103
let f: &&(Fn(&P, &Device) + 'static) = transmute(f);
103104
f(&DeviceManager::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(device))
104105
}
105106

106107
unsafe extern "C" fn device_changed_trampoline<P>(this: *mut ffi::GdkDeviceManager, device: *mut ffi::GdkDevice, f: glib_ffi::gpointer)
107108
where P: IsA<DeviceManager> {
109+
callback_guard!();
108110
let f: &&(Fn(&P, &Device) + 'static) = transmute(f);
109111
f(&DeviceManager::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(device))
110112
}
111113

112114
unsafe extern "C" fn device_removed_trampoline<P>(this: *mut ffi::GdkDeviceManager, device: *mut ffi::GdkDevice, f: glib_ffi::gpointer)
113115
where P: IsA<DeviceManager> {
116+
callback_guard!();
114117
let f: &&(Fn(&P, &Device) + 'static) = transmute(f);
115118
f(&DeviceManager::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(device))
116119
}
117120

118121
unsafe extern "C" fn notify_display_trampoline<P>(this: *mut ffi::GdkDeviceManager, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
119122
where P: IsA<DeviceManager> {
123+
callback_guard!();
120124
let f: &&(Fn(&P) + 'static) = transmute(f);
121125
f(&DeviceManager::from_glib_borrow(this).downcast_unchecked())
122126
}

src/auto/device_tool.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -144,24 +144,28 @@ impl<O: IsA<DeviceTool> + IsA<glib::object::Object>> DeviceToolExt for O {
144144

145145
unsafe extern "C" fn notify_axes_trampoline<P>(this: *mut ffi::GdkDeviceTool, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
146146
where P: IsA<DeviceTool> {
147+
callback_guard!();
147148
let f: &&(Fn(&P) + 'static) = transmute(f);
148149
f(&DeviceTool::from_glib_borrow(this).downcast_unchecked())
149150
}
150151

151152
unsafe extern "C" fn notify_hardware_id_trampoline<P>(this: *mut ffi::GdkDeviceTool, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
152153
where P: IsA<DeviceTool> {
154+
callback_guard!();
153155
let f: &&(Fn(&P) + 'static) = transmute(f);
154156
f(&DeviceTool::from_glib_borrow(this).downcast_unchecked())
155157
}
156158

157159
unsafe extern "C" fn notify_serial_trampoline<P>(this: *mut ffi::GdkDeviceTool, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
158160
where P: IsA<DeviceTool> {
161+
callback_guard!();
159162
let f: &&(Fn(&P) + 'static) = transmute(f);
160163
f(&DeviceTool::from_glib_borrow(this).downcast_unchecked())
161164
}
162165

163166
unsafe extern "C" fn notify_tool_type_trampoline<P>(this: *mut ffi::GdkDeviceTool, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
164167
where P: IsA<DeviceTool> {
168+
callback_guard!();
165169
let f: &&(Fn(&P) + 'static) = transmute(f);
166170
f(&DeviceTool::from_glib_borrow(this).downcast_unchecked())
167171
}

src/auto/display.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -531,40 +531,46 @@ impl<O: IsA<Display> + IsA<glib::object::Object>> DisplayExt for O {
531531

532532
unsafe extern "C" fn closed_trampoline<P>(this: *mut ffi::GdkDisplay, is_error: glib_ffi::gboolean, f: glib_ffi::gpointer)
533533
where P: IsA<Display> {
534+
callback_guard!();
534535
let f: &&(Fn(&P, bool) + 'static) = transmute(f);
535536
f(&Display::from_glib_borrow(this).downcast_unchecked(), from_glib(is_error))
536537
}
537538

538539
#[cfg(any(feature = "v3_22", feature = "dox"))]
539540
unsafe extern "C" fn monitor_added_trampoline<P>(this: *mut ffi::GdkDisplay, monitor: *mut ffi::GdkMonitor, f: glib_ffi::gpointer)
540541
where P: IsA<Display> {
542+
callback_guard!();
541543
let f: &&(Fn(&P, &Monitor) + 'static) = transmute(f);
542544
f(&Display::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(monitor))
543545
}
544546

545547
#[cfg(any(feature = "v3_22", feature = "dox"))]
546548
unsafe extern "C" fn monitor_removed_trampoline<P>(this: *mut ffi::GdkDisplay, monitor: *mut ffi::GdkMonitor, f: glib_ffi::gpointer)
547549
where P: IsA<Display> {
550+
callback_guard!();
548551
let f: &&(Fn(&P, &Monitor) + 'static) = transmute(f);
549552
f(&Display::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(monitor))
550553
}
551554

552555
unsafe extern "C" fn opened_trampoline<P>(this: *mut ffi::GdkDisplay, f: glib_ffi::gpointer)
553556
where P: IsA<Display> {
557+
callback_guard!();
554558
let f: &&(Fn(&P) + 'static) = transmute(f);
555559
f(&Display::from_glib_borrow(this).downcast_unchecked())
556560
}
557561

558562
#[cfg(any(feature = "v3_20", feature = "dox"))]
559563
unsafe extern "C" fn seat_added_trampoline<P>(this: *mut ffi::GdkDisplay, seat: *mut ffi::GdkSeat, f: glib_ffi::gpointer)
560564
where P: IsA<Display> {
565+
callback_guard!();
561566
let f: &&(Fn(&P, &Seat) + 'static) = transmute(f);
562567
f(&Display::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(seat))
563568
}
564569

565570
#[cfg(any(feature = "v3_20", feature = "dox"))]
566571
unsafe extern "C" fn seat_removed_trampoline<P>(this: *mut ffi::GdkDisplay, seat: *mut ffi::GdkSeat, f: glib_ffi::gpointer)
567572
where P: IsA<Display> {
573+
callback_guard!();
568574
let f: &&(Fn(&P, &Seat) + 'static) = transmute(f);
569575
f(&Display::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(seat))
570576
}

src/auto/display_manager.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -92,12 +92,14 @@ impl<O: IsA<DisplayManager> + IsA<glib::object::Object>> DisplayManagerExt for O
9292

9393
unsafe extern "C" fn display_opened_trampoline<P>(this: *mut ffi::GdkDisplayManager, display: *mut ffi::GdkDisplay, f: glib_ffi::gpointer)
9494
where P: IsA<DisplayManager> {
95+
callback_guard!();
9596
let f: &&(Fn(&P, &Display) + 'static) = transmute(f);
9697
f(&DisplayManager::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(display))
9798
}
9899

99100
unsafe extern "C" fn notify_default_display_trampoline<P>(this: *mut ffi::GdkDisplayManager, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
100101
where P: IsA<DisplayManager> {
102+
callback_guard!();
101103
let f: &&(Fn(&P) + 'static) = transmute(f);
102104
f(&DisplayManager::from_glib_borrow(this).downcast_unchecked())
103105
}

src/auto/drag_context.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -195,27 +195,31 @@ impl<O: IsA<DragContext> + IsA<glib::object::Object>> DragContextExt for O {
195195
#[cfg(any(feature = "v3_20", feature = "dox"))]
196196
unsafe extern "C" fn action_changed_trampoline<P>(this: *mut ffi::GdkDragContext, action: ffi::GdkDragAction, f: glib_ffi::gpointer)
197197
where P: IsA<DragContext> {
198+
callback_guard!();
198199
let f: &&(Fn(&P, DragAction) + 'static) = transmute(f);
199200
f(&DragContext::from_glib_borrow(this).downcast_unchecked(), from_glib(action))
200201
}
201202

202203
#[cfg(any(feature = "v3_20", feature = "dox"))]
203204
unsafe extern "C" fn cancel_trampoline<P>(this: *mut ffi::GdkDragContext, reason: ffi::GdkDragCancelReason, f: glib_ffi::gpointer)
204205
where P: IsA<DragContext> {
206+
callback_guard!();
205207
let f: &&(Fn(&P, DragCancelReason) + 'static) = transmute(f);
206208
f(&DragContext::from_glib_borrow(this).downcast_unchecked(), from_glib(reason))
207209
}
208210

209211
#[cfg(any(feature = "v3_20", feature = "dox"))]
210212
unsafe extern "C" fn dnd_finished_trampoline<P>(this: *mut ffi::GdkDragContext, f: glib_ffi::gpointer)
211213
where P: IsA<DragContext> {
214+
callback_guard!();
212215
let f: &&(Fn(&P) + 'static) = transmute(f);
213216
f(&DragContext::from_glib_borrow(this).downcast_unchecked())
214217
}
215218

216219
#[cfg(any(feature = "v3_20", feature = "dox"))]
217220
unsafe extern "C" fn drop_performed_trampoline<P>(this: *mut ffi::GdkDragContext, time: libc::c_int, f: glib_ffi::gpointer)
218221
where P: IsA<DragContext> {
222+
callback_guard!();
219223
let f: &&(Fn(&P, i32) + 'static) = transmute(f);
220224
f(&DragContext::from_glib_borrow(this).downcast_unchecked(), time)
221225
}

src/auto/drawing_context.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

@@ -104,13 +104,15 @@ impl<O: IsA<DrawingContext> + IsA<glib::object::Object>> DrawingContextExt for O
104104
#[cfg(any(feature = "v3_22", feature = "dox"))]
105105
unsafe extern "C" fn notify_clip_trampoline<P>(this: *mut ffi::GdkDrawingContext, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
106106
where P: IsA<DrawingContext> {
107+
callback_guard!();
107108
let f: &&(Fn(&P) + 'static) = transmute(f);
108109
f(&DrawingContext::from_glib_borrow(this).downcast_unchecked())
109110
}
110111

111112
#[cfg(any(feature = "v3_22", feature = "dox"))]
112113
unsafe extern "C" fn notify_window_trampoline<P>(this: *mut ffi::GdkDrawingContext, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
113114
where P: IsA<DrawingContext> {
115+
callback_guard!();
114116
let f: &&(Fn(&P) + 'static) = transmute(f);
115117
f(&DrawingContext::from_glib_borrow(this).downcast_unchecked())
116118
}

src/auto/enums.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

src/auto/flags.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file was generated by gir (https://github.com/gtk-rs/gir @ 8b9d0bb)
1+
// This file was generated by gir (https://github.com/gtk-rs/gir @ fbb95f4)
22
// from gir-files (https://github.com/gtk-rs/gir-files @ 77d1f70)
33
// DO NOT EDIT
44

0 commit comments

Comments
 (0)