Advertisement
grvrulz

Untitled

Apr 6th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 361.96 KB | None | 0 0
  1. ~/Projects/Write/build$ make
  2. -- checking for a minimum Vala version of 0.14.0
  3. --   found Vala, version 0.16.0
  4. -- Configuring done
  5. -- Generating done
  6. -- Build files have been written to: /home/gp/Projects/Write/build
  7. [ 50%] Generating src/Write.c
  8. /home/gp/Projects/Write/src/Write.vala:5.7-5.12: error: The namespace name `WebKit' could not be found
  9. using WebKit;
  10.      ^^^^^^
  11. Compilation failed: 1 error(s), 0 warning(s)
  12. make[2]: *** [src/Write.c] Error 1
  13. make[1]: *** [CMakeFiles/write.dir/all] Error 2
  14. make: *** [all] Error 2
  15. gp@gp-Aspire-5738:~/Projects/Write/build$ cmake ..
  16. -- checking for a minimum Vala version of 0.14.0
  17. --   found Vala, version 0.16.0
  18. -- Configuring done
  19. -- Generating done
  20. -- Build files have been written to: /home/gp/Projects/Write/build
  21. gp@gp-Aspire-5738:~/Projects/Write/build$ make
  22. [ 50%] Generating src/Write.c
  23. gdk-2.0.vapi:7.3-7.28: error: `Gdk.Selection' already contains a definition for `convert'
  24.         public static void convert (Gdk.Window requestor, Gdk.Atom selection, Gdk.Atom target, uint32 time_);
  25.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  26. gdk-3.0.vapi:4523.3-4523.28: note: previous definition of `convert' was here
  27.         public static void convert (Gdk.Window requestor, Gdk.Atom selection, Gdk.Atom target, uint32 time_);
  28.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  29. gdk-2.0.vapi:9.3-9.44: error: `Gdk.Selection' already contains a definition for `owner_get'
  30.         public static unowned Gdk.Window owner_get (Gdk.Atom selection);
  31.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  32. gdk-3.0.vapi:4525.3-4525.44: note: previous definition of `owner_get' was here
  33.         public static unowned Gdk.Window owner_get (Gdk.Atom selection);
  34.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  35. gdk-2.0.vapi:11.3-11.56: error: `Gdk.Selection' already contains a definition for `owner_get_for_display'
  36.         public static unowned Gdk.Window owner_get_for_display (Gdk.Display display, Gdk.Atom selection);
  37.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  38. gdk-3.0.vapi:4527.3-4527.56: note: previous definition of `owner_get_for_display' was here
  39.         public static unowned Gdk.Window owner_get_for_display (Gdk.Display display, Gdk.Atom selection);
  40.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  41. gdk-2.0.vapi:13.3-13.30: error: `Gdk.Selection' already contains a definition for `owner_set'
  42.         public static bool owner_set (Gdk.Window owner, Gdk.Atom selection, uint32 time_, bool send_event);
  43.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  44. gdk-3.0.vapi:4529.3-4529.30: note: previous definition of `owner_set' was here
  45.         public static bool owner_set (Gdk.Window owner, Gdk.Atom selection, uint32 time_, bool send_event);
  46.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  47. gdk-2.0.vapi:15.3-15.42: error: `Gdk.Selection' already contains a definition for `owner_set_for_display'
  48.         public static bool owner_set_for_display (Gdk.Display display, Gdk.Window owner, Gdk.Atom selection, uint32 time_, bool send_event);
  49.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  50. gdk-3.0.vapi:4531.3-4531.42: note: previous definition of `owner_set_for_display' was here
  51.         public static bool owner_set_for_display (Gdk.Display display, Gdk.Window owner, Gdk.Atom selection, uint32 time_, bool send_event);
  52.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  53. gdk-2.0.vapi:17.3-17.32: error: `Gdk.Selection' already contains a definition for `property_get'
  54.         public static int property_get (Gdk.Window requestor, uchar[] data, out Gdk.Atom prop_type, int prop_format);
  55.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  56. gdk-3.0.vapi:4533.3-4533.32: note: previous definition of `property_get' was here
  57.         public static int property_get (Gdk.Window requestor, [CCode (array_length = false, type = "guchar**")] uint8[] data, Gdk.Atom prop_type, int prop_format);
  58.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  59. gdk-2.0.vapi:19.3-19.32: error: `Gdk.Selection' already contains a definition for `send_notify'
  60.         public static void send_notify (Gdk.NativeWindow requestor, Gdk.Atom selection, Gdk.Atom target, Gdk.Atom property, uint32 time_);
  61.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  62. gdk-3.0.vapi:4535.3-4535.32: note: previous definition of `send_notify' was here
  63.         public static void send_notify (Gdk.Window requestor, Gdk.Atom selection, Gdk.Atom target, Gdk.Atom property, uint32 time_);
  64.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  65. gdk-2.0.vapi:21.3-21.44: error: `Gdk.Selection' already contains a definition for `send_notify_for_display'
  66.         public static void send_notify_for_display (Gdk.Display display, Gdk.NativeWindow requestor, Gdk.Atom selection, Gdk.Atom target, Gdk.Atom property, uint32 time_);
  67.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  68. gdk-3.0.vapi:4537.3-4537.44: note: previous definition of `send_notify_for_display' was here
  69.         public static void send_notify_for_display (Gdk.Display display, Gdk.Window requestor, Gdk.Atom selection, Gdk.Atom target, Gdk.Atom property, uint32 time_);
  70.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  71. gdk-2.0.vapi:24.2-24.54: error: `Gdk' already contains a definition for `AppLaunchContext'
  72.     public class AppLaunchContext : GLib.AppLaunchContext {
  73.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  74. gdk-3.0.vapi:4540.2-4540.54: note: previous definition of `AppLaunchContext' was here
  75.     public class AppLaunchContext : GLib.AppLaunchContext {
  76.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  77. gdk-2.0.vapi:59.2-59.20: error: `Gdk' already contains a definition for `Cursor'
  78.     public class Cursor {
  79.     ^^^^^^^^^^^^^^^^^^^
  80. gdk-3.0.vapi:4555.2-4555.34: note: previous definition of `Cursor' was here
  81.     public class Cursor : GLib.Object {
  82.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  83. gdk-2.0.vapi:77.2-77.34: error: `Gdk' already contains a definition for `Device'
  84.     public class Device : GLib.Object {
  85.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  86. gdk-3.0.vapi:4575.2-4575.43: note: previous definition of `Device' was here
  87.     public abstract class Device : GLib.Object {
  88.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  89. gdk-2.0.vapi:108.2-108.35: error: `Gdk' already contains a definition for `Display'
  90.     public class Display : GLib.Object {
  91.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  92. gdk-3.0.vapi:4632.2-4632.35: note: previous definition of `Display' was here
  93.     public class Display : GLib.Object {
  94.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  95. gdk-2.0.vapi:176.2-176.42: error: `Gdk' already contains a definition for `DisplayManager'
  96.     public class DisplayManager : GLib.Object {
  97.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  98. gdk-3.0.vapi:4687.2-4687.42: note: previous definition of `DisplayManager' was here
  99.     public class DisplayManager : GLib.Object {
  100.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  101. gdk-2.0.vapi:194.2-194.39: error: `Gdk' already contains a definition for `DragContext'
  102.     public class DragContext : GLib.Object {
  103.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  104. gdk-3.0.vapi:4699.2-4699.39: note: previous definition of `DragContext' was here
  105.     public class DragContext : GLib.Object {
  106.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  107. gdk-2.0.vapi:272.2-272.19: error: `Gdk' already contains a definition for `Event'
  108.     public class Event {
  109.     ^^^^^^^^^^^^^^^^^^
  110. gdk-3.0.vapi:4714.2-4714.19: note: previous definition of `Event' was here
  111.     public class Event {
  112.     ^^^^^^^^^^^^^^^^^^
  113. gdk-2.0.vapi:403.2-403.34: error: `Gdk' already contains a definition for `Keymap'
  114.     public class Keymap : GLib.Object {
  115.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  116. gdk-3.0.vapi:4762.2-4762.34: note: previous definition of `Keymap' was here
  117.     public class Keymap : GLib.Object {
  118.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  119. gdk-2.0.vapi:496.2-496.34: error: `Gdk' already contains a definition for `Screen'
  120.     public class Screen : GLib.Object {
  121.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  122. gdk-3.0.vapi:4783.2-4783.34: note: previous definition of `Screen' was here
  123.     public class Screen : GLib.Object {
  124.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  125. gdk-2.0.vapi:553.2-553.34: error: `Gdk' already contains a definition for `Visual'
  126.     public class Visual : GLib.Object {
  127.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  128. gdk-3.0.vapi:4827.2-4827.34: note: previous definition of `Visual' was here
  129.     public class Visual : GLib.Object {
  130.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  131. gdk-2.0.vapi:588.2-588.35: error: `Gdk' already contains a definition for `Window'
  132.     public class Window : Gdk.Drawable {
  133.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  134. gdk-3.0.vapi:4848.2-4848.34: note: previous definition of `Window' was here
  135.     public class Window : GLib.Object {
  136.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  137. gdk-2.0.vapi:730.2-730.19: error: `Gdk' already contains a definition for `Atom'
  138.     public struct Atom {
  139.     ^^^^^^^^^^^^^^^^^^
  140. gdk-3.0.vapi:5006.2-5006.19: note: previous definition of `Atom' was here
  141.     public struct Atom {
  142.     ^^^^^^^^^^^^^^^^^^
  143. gdk-2.0.vapi:738.2-738.20: error: `Gdk' already contains a definition for `Color'
  144.     public struct Color {
  145.     ^^^^^^^^^^^^^^^^^^^
  146. gdk-3.0.vapi:5014.2-5014.20: note: previous definition of `Color' was here
  147.     public struct Color {
  148.     ^^^^^^^^^^^^^^^^^^^
  149. gdk-2.0.vapi:762.2-762.23: error: `Gdk' already contains a definition for `EventAny'
  150.     public struct EventAny {
  151.     ^^^^^^^^^^^^^^^^^^^^^^
  152. gdk-3.0.vapi:5027.2-5027.23: note: previous definition of `EventAny' was here
  153.     public struct EventAny {
  154.     ^^^^^^^^^^^^^^^^^^^^^^
  155. gdk-2.0.vapi:768.2-768.26: error: `Gdk' already contains a definition for `EventButton'
  156.     public struct EventButton {
  157.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  158. gdk-3.0.vapi:5033.2-5033.26: note: previous definition of `EventButton' was here
  159.     public struct EventButton {
  160.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  161. gdk-2.0.vapi:793.2-793.29: error: `Gdk' already contains a definition for `EventConfigure'
  162.     public struct EventConfigure {
  163.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  164. gdk-3.0.vapi:5048.2-5048.29: note: previous definition of `EventConfigure' was here
  165.     public struct EventConfigure {
  166.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  167. gdk-2.0.vapi:803.2-803.28: error: `Gdk' already contains a definition for `EventCrossing'
  168.     public struct EventCrossing {
  169.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  170. gdk-3.0.vapi:5058.2-5058.28: note: previous definition of `EventCrossing' was here
  171.     public struct EventCrossing {
  172.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  173. gdk-2.0.vapi:819.2-819.23: error: `Gdk' already contains a definition for `EventDND'
  174.     public struct EventDND {
  175.     ^^^^^^^^^^^^^^^^^^^^^^
  176. gdk-3.0.vapi:5074.2-5074.23: note: previous definition of `EventDND' was here
  177.     public struct EventDND {
  178.     ^^^^^^^^^^^^^^^^^^^^^^
  179. gdk-2.0.vapi:829.2-829.26: error: `Gdk' already contains a definition for `EventExpose'
  180.     public struct EventExpose {
  181.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  182. gdk-3.0.vapi:5084.2-5084.26: note: previous definition of `EventExpose' was here
  183.     public struct EventExpose {
  184.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  185. gdk-2.0.vapi:838.2-838.25: error: `Gdk' already contains a definition for `EventFocus'
  186.     public struct EventFocus {
  187.     ^^^^^^^^^^^^^^^^^^^^^^^^
  188. gdk-3.0.vapi:5093.2-5093.25: note: previous definition of `EventFocus' was here
  189.     public struct EventFocus {
  190.     ^^^^^^^^^^^^^^^^^^^^^^^^
  191. gdk-2.0.vapi:845.2-845.30: error: `Gdk' already contains a definition for `EventGrabBroken'
  192.     public struct EventGrabBroken {
  193.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  194. gdk-3.0.vapi:5100.2-5100.30: note: previous definition of `EventGrabBroken' was here
  195.     public struct EventGrabBroken {
  196.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  197. gdk-2.0.vapi:854.2-854.23: error: `Gdk' already contains a definition for `EventKey'
  198.     public struct EventKey {
  199.     ^^^^^^^^^^^^^^^^^^^^^^
  200. gdk-3.0.vapi:5109.2-5109.23: note: previous definition of `EventKey' was here
  201.     public struct EventKey {
  202.     ^^^^^^^^^^^^^^^^^^^^^^
  203. gdk-2.0.vapi:869.2-869.26: error: `Gdk' already contains a definition for `EventMotion'
  204.     public struct EventMotion {
  205.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  206. gdk-3.0.vapi:5124.2-5124.26: note: previous definition of `EventMotion' was here
  207.     public struct EventMotion {
  208.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  209. gdk-2.0.vapi:891.2-891.31: error: `Gdk' already contains a definition for `EventOwnerChange'
  210.     public struct EventOwnerChange {
  211.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  212. gdk-3.0.vapi:5140.2-5140.31: note: previous definition of `EventOwnerChange' was here
  213.     public struct EventOwnerChange {
  214.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  215. gdk-2.0.vapi:902.2-902.28: error: `Gdk' already contains a definition for `EventProperty'
  216.     public struct EventProperty {
  217.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  218. gdk-3.0.vapi:5151.2-5151.28: note: previous definition of `EventProperty' was here
  219.     public struct EventProperty {
  220.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  221. gdk-2.0.vapi:911.2-911.29: error: `Gdk' already contains a definition for `EventProximity'
  222.     public struct EventProximity {
  223.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  224. gdk-3.0.vapi:5160.2-5160.29: note: previous definition of `EventProximity' was here
  225.     public struct EventProximity {
  226.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  227. gdk-2.0.vapi:919.2-919.26: error: `Gdk' already contains a definition for `EventScroll'
  228.     public struct EventScroll {
  229.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  230. gdk-3.0.vapi:5168.2-5168.26: note: previous definition of `EventScroll' was here
  231.     public struct EventScroll {
  232.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  233. gdk-2.0.vapi:933.2-933.29: error: `Gdk' already contains a definition for `EventSelection'
  234.     public struct EventSelection {
  235.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  236. gdk-3.0.vapi:5182.2-5182.29: note: previous definition of `EventSelection' was here
  237.     public struct EventSelection {
  238.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  239. gdk-2.0.vapi:944.2-944.27: error: `Gdk' already contains a definition for `EventSetting'
  240.     public struct EventSetting {
  241.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  242. gdk-3.0.vapi:5193.2-5193.27: note: previous definition of `EventSetting' was here
  243.     public struct EventSetting {
  244.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  245. gdk-2.0.vapi:952.2-952.30: error: `Gdk' already contains a definition for `EventVisibility'
  246.     public struct EventVisibility {
  247.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  248. gdk-3.0.vapi:5201.2-5201.30: note: previous definition of `EventVisibility' was here
  249.     public struct EventVisibility {
  250.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  251. gdk-2.0.vapi:959.2-959.31: error: `Gdk' already contains a definition for `EventWindowState'
  252.     public struct EventWindowState {
  253.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  254. gdk-3.0.vapi:5208.2-5208.31: note: previous definition of `EventWindowState' was here
  255.     public struct EventWindowState {
  256.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  257. gdk-2.0.vapi:988.2-988.23: error: `Gdk' already contains a definition for `Geometry'
  258.     public struct Geometry {
  259.     ^^^^^^^^^^^^^^^^^^^^^^
  260. gdk-3.0.vapi:5216.2-5216.23: note: previous definition of `Geometry' was here
  261.     public struct Geometry {
  262.     ^^^^^^^^^^^^^^^^^^^^^^
  263. gdk-2.0.vapi:1002.2-1002.24: error: `Gdk' already contains a definition for `KeymapKey'
  264.     public struct KeymapKey {
  265.     ^^^^^^^^^^^^^^^^^^^^^^^
  266. gdk-3.0.vapi:5230.2-5230.24: note: previous definition of `KeymapKey' was here
  267.     public struct KeymapKey {
  268.     ^^^^^^^^^^^^^^^^^^^^^^^
  269. gdk-2.0.vapi:1033.2-1033.20: error: `Gdk' already contains a definition for `Point'
  270.     public struct Point {
  271.     ^^^^^^^^^^^^^^^^^^^
  272. gdk-3.0.vapi:5236.2-5236.20: note: previous definition of `Point' was here
  273.     public struct Point {
  274.     ^^^^^^^^^^^^^^^^^^^
  275. gdk-2.0.vapi:1038.2-1038.24: error: `Gdk' already contains a definition for `Rectangle'
  276.     public struct Rectangle {
  277.     ^^^^^^^^^^^^^^^^^^^^^^^
  278. gdk-3.0.vapi:5254.2-5254.45: note: previous definition of `Rectangle' was here
  279.     public struct Rectangle : Cairo.RectangleInt {
  280.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  281. gdk-2.0.vapi:1073.2-1073.24: error: `Gdk' already contains a definition for `TimeCoord'
  282.     public struct TimeCoord {
  283.     ^^^^^^^^^^^^^^^^^^^^^^^
  284. gdk-3.0.vapi:5259.2-5259.24: note: previous definition of `TimeCoord' was here
  285.     public struct TimeCoord {
  286.     ^^^^^^^^^^^^^^^^^^^^^^^
  287. gdk-2.0.vapi:1091.2-1091.25: error: `Gdk' already contains a definition for `WindowAttr'
  288.     public struct WindowAttr {
  289.     ^^^^^^^^^^^^^^^^^^^^^^^^
  290. gdk-3.0.vapi:5265.2-5265.25: note: previous definition of `WindowAttr' was here
  291.     public struct WindowAttr {
  292.     ^^^^^^^^^^^^^^^^^^^^^^^^
  293. gdk-2.0.vapi:1113.2-1113.21: error: `Gdk' already contains a definition for `XEvent'
  294.     public struct XEvent {
  295.     ^^^^^^^^^^^^^^^^^^^^
  296. gdk-3.0.vapi:5002.2-5002.20: note: previous definition of `XEvent' was here
  297.     public class XEvent {
  298.     ^^^^^^^^^^^^^^^^^^^
  299. gdk-2.0.vapi:1650.2-1650.31: error: `Gdk' already contains a definition for `EventFunc'
  300.     public delegate void EventFunc (Gdk.Event event);
  301.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  302. gdk-3.0.vapi:5731.2-5731.31: note: previous definition of `EventFunc' was here
  303.     public delegate void EventFunc (Gdk.Event event);
  304.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  305. gdk-2.0.vapi:1652.2-1652.44: error: `Gdk' already contains a definition for `FilterFunc'
  306.     public delegate Gdk.FilterReturn FilterFunc (Gdk.XEvent xevent, Gdk.Event event);
  307.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  308. gdk-3.0.vapi:5733.2-5733.44: note: previous definition of `FilterFunc' was here
  309.     public delegate Gdk.FilterReturn FilterFunc (Gdk.XEvent xevent, Gdk.Event event);
  310.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  311. gdk-2.0.vapi:1116.2-1116.20: error: `Gdk' already contains a definition for `AxisUse'
  312.     public enum AxisUse {
  313.     ^^^^^^^^^^^^^^^^^^^
  314. gdk-3.0.vapi:5282.2-5282.20: note: previous definition of `AxisUse' was here
  315.     public enum AxisUse {
  316.     ^^^^^^^^^^^^^^^^^^^
  317. gdk-2.0.vapi:1127.2-1127.22: error: `Gdk' already contains a definition for `ByteOrder'
  318.     public enum ByteOrder {
  319.     ^^^^^^^^^^^^^^^^^^^^^
  320. gdk-3.0.vapi:5293.2-5293.22: note: previous definition of `ByteOrder' was here
  321.     public enum ByteOrder {
  322.     ^^^^^^^^^^^^^^^^^^^^^
  323. gdk-2.0.vapi:1139.2-1139.25: error: `Gdk' already contains a definition for `CrossingMode'
  324.     public enum CrossingMode {
  325.     ^^^^^^^^^^^^^^^^^^^^^^^^
  326. gdk-3.0.vapi:5298.2-5298.25: note: previous definition of `CrossingMode' was here
  327.     public enum CrossingMode {
  328.     ^^^^^^^^^^^^^^^^^^^^^^^^
  329. gdk-2.0.vapi:1148.2-1148.23: error: `Gdk' already contains a definition for `CursorType'
  330.     public enum CursorType {
  331.     ^^^^^^^^^^^^^^^^^^^^^^
  332. gdk-3.0.vapi:5307.2-5307.23: note: previous definition of `CursorType' was here
  333.     public enum CursorType {
  334.     ^^^^^^^^^^^^^^^^^^^^^^
  335. gdk-2.0.vapi:1232.2-1232.23: error: `Gdk' already contains a definition for `DragAction'
  336.     public enum DragAction {
  337.     ^^^^^^^^^^^^^^^^^^^^^^
  338. gdk-3.0.vapi:5397.2-5397.23: note: previous definition of `DragAction' was here
  339.     public enum DragAction {
  340.     ^^^^^^^^^^^^^^^^^^^^^^
  341. gdk-2.0.vapi:1241.2-1241.25: error: `Gdk' already contains a definition for `DragProtocol'
  342.     public enum DragProtocol {
  343.     ^^^^^^^^^^^^^^^^^^^^^^^^
  344. gdk-3.0.vapi:5406.2-5406.25: note: previous definition of `DragProtocol' was here
  345.     public enum DragProtocol {
  346.     ^^^^^^^^^^^^^^^^^^^^^^^^
  347. gdk-2.0.vapi:1252.2-1252.22: error: `Gdk' already contains a definition for `EventMask'
  348.     public enum EventMask {
  349.     ^^^^^^^^^^^^^^^^^^^^^
  350. gdk-3.0.vapi:5417.2-5417.22: note: previous definition of `EventMask' was here
  351.     public enum EventMask {
  352.     ^^^^^^^^^^^^^^^^^^^^^
  353. gdk-2.0.vapi:1277.2-1277.22: error: `Gdk' already contains a definition for `EventType'
  354.     public enum EventType {
  355.     ^^^^^^^^^^^^^^^^^^^^^
  356. gdk-3.0.vapi:5442.2-5442.22: note: previous definition of `EventType' was here
  357.     public enum EventType {
  358.     ^^^^^^^^^^^^^^^^^^^^^
  359. gdk-2.0.vapi:1319.2-1319.26: error: `Gdk' already contains a definition for `ExtensionMode'
  360.     public enum ExtensionMode {
  361.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  362. gdk-3.0.vapi:5483.2-5483.26: note: previous definition of `ExtensionMode' was here
  363.     public enum ExtensionMode {
  364.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  365. gdk-2.0.vapi:1337.2-1337.25: error: `Gdk' already contains a definition for `FilterReturn'
  366.     public enum FilterReturn {
  367.     ^^^^^^^^^^^^^^^^^^^^^^^^
  368. gdk-3.0.vapi:5489.2-5489.25: note: previous definition of `FilterReturn' was here
  369.     public enum FilterReturn {
  370.     ^^^^^^^^^^^^^^^^^^^^^^^^
  371. gdk-2.0.vapi:1389.2-1389.23: error: `Gdk' already contains a definition for `GrabStatus'
  372.     public enum GrabStatus {
  373.     ^^^^^^^^^^^^^^^^^^^^^^
  374. gdk-3.0.vapi:5501.2-5501.23: note: previous definition of `GrabStatus' was here
  375.     public enum GrabStatus {
  376.     ^^^^^^^^^^^^^^^^^^^^^^
  377. gdk-2.0.vapi:1397.2-1397.20: error: `Gdk' already contains a definition for `Gravity'
  378.     public enum Gravity {
  379.     ^^^^^^^^^^^^^^^^^^^
  380. gdk-3.0.vapi:5509.2-5509.20: note: previous definition of `Gravity' was here
  381.     public enum Gravity {
  382.     ^^^^^^^^^^^^^^^^^^^
  383. gdk-2.0.vapi:1423.2-1423.22: error: `Gdk' already contains a definition for `InputMode'
  384.     public enum InputMode {
  385.     ^^^^^^^^^^^^^^^^^^^^^
  386. gdk-3.0.vapi:5522.2-5522.22: note: previous definition of `InputMode' was here
  387.     public enum InputMode {
  388.     ^^^^^^^^^^^^^^^^^^^^^
  389. gdk-2.0.vapi:1429.2-1429.24: error: `Gdk' already contains a definition for `InputSource'
  390.     public enum InputSource {
  391.     ^^^^^^^^^^^^^^^^^^^^^^^
  392. gdk-3.0.vapi:5528.2-5528.24: note: previous definition of `InputSource' was here
  393.     public enum InputSource {
  394.     ^^^^^^^^^^^^^^^^^^^^^^^
  395. gdk-2.0.vapi:1449.2-1449.25: error: `Gdk' already contains a definition for `ModifierType'
  396.     public enum ModifierType {
  397.     ^^^^^^^^^^^^^^^^^^^^^^^^
  398. gdk-3.0.vapi:5546.2-5546.25: note: previous definition of `ModifierType' was here
  399.     public enum ModifierType {
  400.     ^^^^^^^^^^^^^^^^^^^^^^^^
  401. gdk-2.0.vapi:1470.2-1470.23: error: `Gdk' already contains a definition for `NotifyType'
  402.     public enum NotifyType {
  403.     ^^^^^^^^^^^^^^^^^^^^^^
  404. gdk-3.0.vapi:5567.2-5567.23: note: previous definition of `NotifyType' was here
  405.     public enum NotifyType {
  406.     ^^^^^^^^^^^^^^^^^^^^^^
  407. gdk-2.0.vapi:1485.2-1485.24: error: `Gdk' already contains a definition for `OwnerChange'
  408.     public enum OwnerChange {
  409.     ^^^^^^^^^^^^^^^^^^^^^^^
  410. gdk-3.0.vapi:5576.2-5576.24: note: previous definition of `OwnerChange' was here
  411.     public enum OwnerChange {
  412.     ^^^^^^^^^^^^^^^^^^^^^^^
  413. gdk-2.0.vapi:1491.2-1491.21: error: `Gdk' already contains a definition for `PropMode'
  414.     public enum PropMode {
  415.     ^^^^^^^^^^^^^^^^^^^^
  416. gdk-3.0.vapi:5582.2-5582.21: note: previous definition of `PropMode' was here
  417.     public enum PropMode {
  418.     ^^^^^^^^^^^^^^^^^^^^
  419. gdk-2.0.vapi:1497.2-1497.26: error: `Gdk' already contains a definition for `PropertyState'
  420.     public enum PropertyState {
  421.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  422. gdk-3.0.vapi:5588.2-5588.26: note: previous definition of `PropertyState' was here
  423.     public enum PropertyState {
  424.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  425. gdk-2.0.vapi:1508.2-1508.28: error: `Gdk' already contains a definition for `ScrollDirection'
  426.     public enum ScrollDirection {
  427.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  428. gdk-3.0.vapi:5593.2-5593.28: note: previous definition of `ScrollDirection' was here
  429.     public enum ScrollDirection {
  430.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  431. gdk-2.0.vapi:1515.2-1515.26: error: `Gdk' already contains a definition for `SettingAction'
  432.     public enum SettingAction {
  433.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  434. gdk-3.0.vapi:5600.2-5600.26: note: previous definition of `SettingAction' was here
  435.     public enum SettingAction {
  436.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  437. gdk-2.0.vapi:1521.2-1521.19: error: `Gdk' already contains a definition for `Status'
  438.     public enum Status {
  439.     ^^^^^^^^^^^^^^^^^^
  440. gdk-3.0.vapi:5606.2-5606.19: note: previous definition of `Status' was here
  441.     public enum Status {
  442.     ^^^^^^^^^^^^^^^^^^
  443. gdk-2.0.vapi:1534.2-1534.28: error: `Gdk' already contains a definition for `VisibilityState'
  444.     public enum VisibilityState {
  445.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  446. gdk-3.0.vapi:5614.2-5614.28: note: previous definition of `VisibilityState' was here
  447.     public enum VisibilityState {
  448.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  449. gdk-2.0.vapi:1540.2-1540.23: error: `Gdk' already contains a definition for `VisualType'
  450.     public enum VisualType {
  451.     ^^^^^^^^^^^^^^^^^^^^^^
  452. gdk-3.0.vapi:5620.2-5620.23: note: previous definition of `VisualType' was here
  453.     public enum VisualType {
  454.     ^^^^^^^^^^^^^^^^^^^^^^
  455. gdk-2.0.vapi:1550.2-1550.25: error: `Gdk' already contains a definition for `WMDecoration'
  456.     public enum WMDecoration {
  457.     ^^^^^^^^^^^^^^^^^^^^^^^^
  458. gdk-3.0.vapi:5630.2-5630.25: note: previous definition of `WMDecoration' was here
  459.     public enum WMDecoration {
  460.     ^^^^^^^^^^^^^^^^^^^^^^^^
  461. gdk-2.0.vapi:1561.2-1561.23: error: `Gdk' already contains a definition for `WMFunction'
  462.     public enum WMFunction {
  463.     ^^^^^^^^^^^^^^^^^^^^^^
  464. gdk-3.0.vapi:5641.2-5641.23: note: previous definition of `WMFunction' was here
  465.     public enum WMFunction {
  466.     ^^^^^^^^^^^^^^^^^^^^^^
  467. gdk-2.0.vapi:1571.2-1571.33: error: `Gdk' already contains a definition for `WindowAttributesType'
  468.     public enum WindowAttributesType {
  469.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  470. gdk-3.0.vapi:5651.2-5651.33: note: previous definition of `WindowAttributesType' was here
  471.     public enum WindowAttributesType {
  472.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  473. gdk-2.0.vapi:1588.2-1588.23: error: `Gdk' already contains a definition for `WindowEdge'
  474.     public enum WindowEdge {
  475.     ^^^^^^^^^^^^^^^^^^^^^^
  476. gdk-3.0.vapi:5662.2-5662.23: note: previous definition of `WindowEdge' was here
  477.     public enum WindowEdge {
  478.     ^^^^^^^^^^^^^^^^^^^^^^
  479. gdk-2.0.vapi:1600.2-1600.24: error: `Gdk' already contains a definition for `WindowHints'
  480.     public enum WindowHints {
  481.     ^^^^^^^^^^^^^^^^^^^^^^^
  482. gdk-3.0.vapi:5674.2-5674.24: note: previous definition of `WindowHints' was here
  483.     public enum WindowHints {
  484.     ^^^^^^^^^^^^^^^^^^^^^^^
  485. gdk-2.0.vapi:1613.2-1613.24: error: `Gdk' already contains a definition for `WindowState'
  486.     public enum WindowState {
  487.     ^^^^^^^^^^^^^^^^^^^^^^^
  488. gdk-3.0.vapi:5687.2-5687.24: note: previous definition of `WindowState' was here
  489.     public enum WindowState {
  490.     ^^^^^^^^^^^^^^^^^^^^^^^
  491. gdk-2.0.vapi:1623.2-1623.23: error: `Gdk' already contains a definition for `WindowType'
  492.     public enum WindowType {
  493.     ^^^^^^^^^^^^^^^^^^^^^^
  494. gdk-3.0.vapi:5698.2-5698.23: note: previous definition of `WindowType' was here
  495.     public enum WindowType {
  496.     ^^^^^^^^^^^^^^^^^^^^^^
  497. gdk-2.0.vapi:1633.2-1633.27: error: `Gdk' already contains a definition for `WindowTypeHint'
  498.     public enum WindowTypeHint {
  499.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  500. gdk-3.0.vapi:5707.2-5707.27: note: previous definition of `WindowTypeHint' was here
  501.     public enum WindowTypeHint {
  502.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  503. gdk-2.0.vapi:1659.2-1659.31: error: `Gdk' already contains a definition for `CURRENT_TIME'
  504.     public const int CURRENT_TIME;
  505.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  506. gdk-3.0.vapi:5743.2-5743.31: note: previous definition of `CURRENT_TIME' was here
  507.     public const int CURRENT_TIME;
  508.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  509. gdk-2.0.vapi:1661.2-1661.37: error: `Gdk' already contains a definition for `MAX_TIMECOORD_AXES'
  510.     public const int MAX_TIMECOORD_AXES;
  511.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  512. gdk-3.0.vapi:5745.2-5745.37: note: previous definition of `MAX_TIMECOORD_AXES' was here
  513.     public const int MAX_TIMECOORD_AXES;
  514.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  515. gdk-2.0.vapi:1663.2-1663.34: error: `Gdk' already contains a definition for `PARENT_RELATIVE'
  516.     public const int PARENT_RELATIVE;
  517.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  518. gdk-3.0.vapi:5747.2-5747.34: note: previous definition of `PARENT_RELATIVE' was here
  519.     public const int PARENT_RELATIVE;
  520.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  521. gdk-2.0.vapi:1665.2-1665.34: error: `Gdk' already contains a definition for `PRIORITY_REDRAW'
  522.     public const int PRIORITY_REDRAW;
  523.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  524. gdk-3.0.vapi:5749.2-5749.34: note: previous definition of `PRIORITY_REDRAW' was here
  525.     public const int PRIORITY_REDRAW;
  526.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  527. gdk-2.0.vapi:1667.2-1667.43: error: `Gdk' already contains a definition for `SELECTION_CLIPBOARD'
  528.     public const Gdk.Atom SELECTION_CLIPBOARD;
  529.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  530. gdk-3.0.vapi:5751.2-5751.43: note: previous definition of `SELECTION_CLIPBOARD' was here
  531.     public const Gdk.Atom SELECTION_CLIPBOARD;
  532.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  533. gdk-2.0.vapi:1669.2-1669.41: error: `Gdk' already contains a definition for `SELECTION_PRIMARY'
  534.     public const Gdk.Atom SELECTION_PRIMARY;
  535.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  536. gdk-3.0.vapi:5753.2-5753.41: note: previous definition of `SELECTION_PRIMARY' was here
  537.     public const Gdk.Atom SELECTION_PRIMARY;
  538.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  539. gdk-2.0.vapi:1671.2-1671.43: error: `Gdk' already contains a definition for `SELECTION_SECONDARY'
  540.     public const Gdk.Atom SELECTION_SECONDARY;
  541.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  542. gdk-3.0.vapi:5755.2-5755.43: note: previous definition of `SELECTION_SECONDARY' was here
  543.     public const Gdk.Atom SELECTION_SECONDARY;
  544.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  545. gdk-2.0.vapi:1675.2-1675.50: error: `Gdk' already contains a definition for `add_option_entries_libgtk_only'
  546.     public static void add_option_entries_libgtk_only (GLib.OptionGroup group);
  547.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  548. gdk-3.0.vapi:5757.2-5757.50: note: previous definition of `add_option_entries_libgtk_only' was here
  549.     public static void add_option_entries_libgtk_only (GLib.OptionGroup group);
  550.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  551. gdk-2.0.vapi:1677.2-1677.24: error: `Gdk' already contains a definition for `beep'
  552.     public static void beep ();
  553.     ^^^^^^^^^^^^^^^^^^^^^^^
  554. gdk-3.0.vapi:5759.2-5759.24: note: previous definition of `beep' was here
  555.     public static void beep ();
  556.     ^^^^^^^^^^^^^^^^^^^^^^^
  557. gdk-2.0.vapi:1679.2-1679.41: error: `Gdk' already contains a definition for `cairo_create'
  558.     public static Cairo.Context cairo_create (Gdk.Drawable drawable);
  559.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  560. gdk-3.0.vapi:5761.2-5761.41: note: previous definition of `cairo_create' was here
  561.     public static Cairo.Context cairo_create (Gdk.Window window);
  562.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  563. gdk-2.0.vapi:1681.2-1681.35: error: `Gdk' already contains a definition for `cairo_rectangle'
  564.     public static void cairo_rectangle (Cairo.Context cr, Gdk.Rectangle rectangle);
  565.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  566. gdk-3.0.vapi:5765.2-5765.35: note: previous definition of `cairo_rectangle' was here
  567.     public static void cairo_rectangle (Cairo.Context cr, Gdk.Rectangle rectangle);
  568.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  569. gdk-2.0.vapi:1683.2-1683.32: error: `Gdk' already contains a definition for `cairo_region'
  570.     public static void cairo_region (Cairo.Context cr, Gdk.Region region);
  571.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  572. gdk-3.0.vapi:5767.2-5767.32: note: previous definition of `cairo_region' was here
  573.     public static void cairo_region (Cairo.Context cr, Cairo.Region region);
  574.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  575. gdk-2.0.vapi:1687.2-1687.42: error: `Gdk' already contains a definition for `cairo_set_source_color'
  576.     public static void cairo_set_source_color (Cairo.Context cr, Gdk.Color color);
  577.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  578. gdk-3.0.vapi:5772.2-5772.42: note: previous definition of `cairo_set_source_color' was here
  579.     public static void cairo_set_source_color (Cairo.Context cr, Gdk.Color color);
  580.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  581. gdk-2.0.vapi:1689.2-1689.43: error: `Gdk' already contains a definition for `cairo_set_source_pixbuf'
  582.     public static void cairo_set_source_pixbuf (Cairo.Context cr, Gdk.Pixbuf pixbuf, double pixbuf_x, double pixbuf_y);
  583.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  584. gdk-3.0.vapi:5774.2-5774.43: note: previous definition of `cairo_set_source_pixbuf' was here
  585.     public static void cairo_set_source_pixbuf (Cairo.Context cr, Gdk.Pixbuf pixbuf, double pixbuf_x, double pixbuf_y);
  586.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  587. gdk-2.0.vapi:1699.2-1699.30: error: `Gdk' already contains a definition for `drag_abort'
  588.     public static void drag_abort (Gdk.DragContext context, uint32 time_);
  589.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  590. gdk-3.0.vapi:5782.2-5782.30: note: previous definition of `drag_abort' was here
  591.     public static void drag_abort (Gdk.DragContext context, uint32 time_);
  592.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  593. gdk-2.0.vapi:1701.2-1701.49: error: `Gdk' already contains a definition for `drag_begin'
  594.     public static unowned Gdk.DragContext drag_begin (Gdk.Window window, GLib.List<Gdk.Atom> targets);
  595.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  596. gdk-3.0.vapi:5784.2-5784.41: note: previous definition of `drag_begin' was here
  597.     public static Gdk.DragContext drag_begin (Gdk.Window window, GLib.List<Gdk.Atom> targets);
  598.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  599. gdk-2.0.vapi:1703.2-1703.29: error: `Gdk' already contains a definition for `drag_drop'
  600.     public static void drag_drop (Gdk.DragContext context, uint32 time_);
  601.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  602. gdk-3.0.vapi:5788.2-5788.29: note: previous definition of `drag_drop' was here
  603.     public static void drag_drop (Gdk.DragContext context, uint32 time_);
  604.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  605. gdk-2.0.vapi:1705.2-1705.39: error: `Gdk' already contains a definition for `drag_drop_succeeded'
  606.     public static bool drag_drop_succeeded (Gdk.DragContext context);
  607.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  608. gdk-3.0.vapi:5790.2-5790.39: note: previous definition of `drag_drop_succeeded' was here
  609.     public static bool drag_drop_succeeded (Gdk.DragContext context);
  610.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  611. gdk-2.0.vapi:1709.2-1709.47: error: `Gdk' already contains a definition for `drag_find_window_for_screen'
  612.     public static void drag_find_window_for_screen (Gdk.DragContext context, Gdk.Window drag_window, Gdk.Screen screen, int x_root, int y_root, out unowned Gdk.Window dest_window, Gdk.DragProtocol protocol);
  613.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  614. gdk-3.0.vapi:5792.2-5792.47: note: previous definition of `drag_find_window_for_screen' was here
  615.     public static void drag_find_window_for_screen (Gdk.DragContext context, Gdk.Window drag_window, Gdk.Screen screen, int x_root, int y_root, out Gdk.Window dest_window, out Gdk.DragProtocol protocol);
  616.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  617. gdk-2.0.vapi:1715.2-1715.42: error: `Gdk' already contains a definition for `drag_get_selection'
  618.     public static Gdk.Atom drag_get_selection (Gdk.DragContext context);
  619.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  620. gdk-3.0.vapi:5794.2-5794.42: note: previous definition of `drag_get_selection' was here
  621.     public static Gdk.Atom drag_get_selection (Gdk.DragContext context);
  622.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  623. gdk-2.0.vapi:1717.2-1717.31: error: `Gdk' already contains a definition for `drag_motion'
  624.     public static bool drag_motion (Gdk.DragContext context, Gdk.Window dest_window, Gdk.DragProtocol protocol, int x_root, int y_root, Gdk.DragAction suggested_action, Gdk.DragAction possible_actions, uint32 time_);
  625.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  626. gdk-3.0.vapi:5796.2-5796.31: note: previous definition of `drag_motion' was here
  627.     public static bool drag_motion (Gdk.DragContext context, Gdk.Window dest_window, Gdk.DragProtocol protocol, int x_root, int y_root, Gdk.DragAction suggested_action, Gdk.DragAction possible_actions, uint32 time_);
  628.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  629. gdk-2.0.vapi:1719.2-1719.31: error: `Gdk' already contains a definition for `drag_status'
  630.     public static void drag_status (Gdk.DragContext context, Gdk.DragAction action, uint32 time_);
  631.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  632. gdk-3.0.vapi:5798.2-5798.31: note: previous definition of `drag_status' was here
  633.     public static void drag_status (Gdk.DragContext context, Gdk.DragAction action, uint32 time_);
  634.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  635. gdk-2.0.vapi:1799.2-1799.31: error: `Gdk' already contains a definition for `drop_finish'
  636.     public static void drop_finish (Gdk.DragContext context, bool success, uint32 time_);
  637.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  638. gdk-3.0.vapi:5800.2-5800.31: note: previous definition of `drop_finish' was here
  639.     public static void drop_finish (Gdk.DragContext context, bool success, uint32 time_);
  640.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  641. gdk-2.0.vapi:1801.2-1801.30: error: `Gdk' already contains a definition for `drop_reply'
  642.     public static void drop_reply (Gdk.DragContext context, bool ok, uint32 time_);
  643.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  644. gdk-3.0.vapi:5802.2-5802.30: note: previous definition of `drop_reply' was here
  645.     public static void drop_reply (Gdk.DragContext context, bool accepted, uint32 time_);
  646.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  647. gdk-2.0.vapi:1803.2-1803.33: error: `Gdk' already contains a definition for `error_trap_pop'
  648.     public static int error_trap_pop ();
  649.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  650. gdk-3.0.vapi:5804.2-5804.33: note: previous definition of `error_trap_pop' was here
  651.     public static int error_trap_pop ();
  652.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  653. gdk-2.0.vapi:1805.2-1805.35: error: `Gdk' already contains a definition for `error_trap_push'
  654.     public static void error_trap_push ();
  655.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  656. gdk-3.0.vapi:5808.2-5808.35: note: previous definition of `error_trap_push' was here
  657.     public static void error_trap_push ();
  658.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  659. gdk-2.0.vapi:1807.2-1807.34: error: `Gdk' already contains a definition for `events_pending'
  660.     public static bool events_pending ();
  661.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  662. gdk-3.0.vapi:5816.2-5816.34: note: previous definition of `events_pending' was here
  663.     public static bool events_pending ();
  664.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  665. gdk-2.0.vapi:1809.2-1809.25: error: `Gdk' already contains a definition for `flush'
  666.     public static void flush ();
  667.     ^^^^^^^^^^^^^^^^^^^^^^^^
  668. gdk-3.0.vapi:5818.2-5818.25: note: previous definition of `flush' was here
  669.     public static void flush ();
  670.     ^^^^^^^^^^^^^^^^^^^^^^^^
  671. gdk-2.0.vapi:1817.2-1817.57: error: `Gdk' already contains a definition for `get_default_root_window'
  672.     public static unowned Gdk.Window get_default_root_window ();
  673.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  674. gdk-3.0.vapi:5820.2-5820.57: note: previous definition of `get_default_root_window' was here
  675.     public static unowned Gdk.Window get_default_root_window ();
  676.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  677. gdk-2.0.vapi:1819.2-1819.41: error: `Gdk' already contains a definition for `get_display'
  678.     public static unowned string get_display ();
  679.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  680. gdk-3.0.vapi:5822.2-5822.33: note: previous definition of `get_display' was here
  681.     public static string get_display ();
  682.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  683. gdk-2.0.vapi:1821.2-1821.50: error: `Gdk' already contains a definition for `get_display_arg_name'
  684.     public static unowned string get_display_arg_name ();
  685.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  686. gdk-3.0.vapi:5824.2-5824.50: note: previous definition of `get_display_arg_name' was here
  687.     public static unowned string get_display_arg_name ();
  688.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  689. gdk-2.0.vapi:1823.2-1823.47: error: `Gdk' already contains a definition for `get_program_class'
  690.     public static unowned string get_program_class ();
  691.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  692. gdk-3.0.vapi:5826.2-5826.47: note: previous definition of `get_program_class' was here
  693.     public static unowned string get_program_class ();
  694.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  695. gdk-2.0.vapi:1825.2-1825.35: error: `Gdk' already contains a definition for `get_show_events'
  696.     public static bool get_show_events ();
  697.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  698. gdk-3.0.vapi:5828.2-5828.35: note: previous definition of `get_show_events' was here
  699.     public static bool get_show_events ();
  700.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  701. gdk-2.0.vapi:1827.2-1827.24: error: `Gdk' already contains a definition for `init'
  702.     public static void init ([CCode (array_length_pos = 0.9)] ref unowned string[] argv);
  703.     ^^^^^^^^^^^^^^^^^^^^^^^
  704. gdk-3.0.vapi:5830.2-5830.24: note: previous definition of `init' was here
  705.     public static void init ([CCode (array_length_cname = "argc", array_length_pos = 0.5)] ref unowned string[] argv);
  706.     ^^^^^^^^^^^^^^^^^^^^^^^
  707. gdk-2.0.vapi:1829.2-1829.30: error: `Gdk' already contains a definition for `init_check'
  708.     public static bool init_check ([CCode (array_length_pos = 0.9)] ref unowned string[] argv);
  709.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  710. gdk-3.0.vapi:5832.2-5832.30: note: previous definition of `init_check' was here
  711.     public static bool init_check ([CCode (array_length_cname = "argc", array_length_pos = 0.5)] ref unowned string[] argv);
  712.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  713. gdk-2.0.vapi:1833.2-1833.43: error: `Gdk' already contains a definition for `keyboard_grab'
  714.     public static Gdk.GrabStatus keyboard_grab (Gdk.Window window, bool owner_events, uint32 time_);
  715.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  716. gdk-3.0.vapi:5835.2-5835.43: note: previous definition of `keyboard_grab' was here
  717.     public static Gdk.GrabStatus keyboard_grab (Gdk.Window window, bool owner_events, uint32 time_);
  718.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  719. gdk-2.0.vapi:1835.2-1835.35: error: `Gdk' already contains a definition for `keyboard_ungrab'
  720.     public static void keyboard_ungrab (uint32 time_);
  721.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  722. gdk-3.0.vapi:5838.2-5838.35: note: previous definition of `keyboard_ungrab' was here
  723.     public static void keyboard_ungrab (uint32 time_);
  724.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  725. gdk-2.0.vapi:1837.2-1837.39: error: `Gdk' already contains a definition for `keyval_convert_case'
  726.     public static void keyval_convert_case (uint symbol, uint lower, uint upper);
  727.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  728. gdk-3.0.vapi:5840.2-5840.39: note: previous definition of `keyval_convert_case' was here
  729.     public static void keyval_convert_case (uint symbol, out uint lower, out uint upper);
  730.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  731. gdk-2.0.vapi:1839.2-1839.36: error: `Gdk' already contains a definition for `keyval_from_name'
  732.     public static uint keyval_from_name (string keyval_name);
  733.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  734. gdk-3.0.vapi:5842.2-5842.36: note: previous definition of `keyval_from_name' was here
  735.     public static uint keyval_from_name (string keyval_name);
  736.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  737. gdk-2.0.vapi:1841.2-1841.35: error: `Gdk' already contains a definition for `keyval_is_lower'
  738.     public static bool keyval_is_lower (uint keyval);
  739.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  740. gdk-3.0.vapi:5844.2-5844.35: note: previous definition of `keyval_is_lower' was here
  741.     public static bool keyval_is_lower (uint keyval);
  742.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  743. gdk-2.0.vapi:1843.2-1843.35: error: `Gdk' already contains a definition for `keyval_is_upper'
  744.     public static bool keyval_is_upper (uint keyval);
  745.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  746. gdk-3.0.vapi:5846.2-5846.35: note: previous definition of `keyval_is_upper' was here
  747.     public static bool keyval_is_upper (uint keyval);
  748.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  749. gdk-2.0.vapi:1845.2-1845.41: error: `Gdk' already contains a definition for `keyval_name'
  750.     public static unowned string keyval_name (uint keyval);
  751.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  752. gdk-3.0.vapi:5848.2-5848.41: note: previous definition of `keyval_name' was here
  753.     public static unowned string keyval_name (uint keyval);
  754.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  755. gdk-2.0.vapi:1847.2-1847.35: error: `Gdk' already contains a definition for `keyval_to_lower'
  756.     public static uint keyval_to_lower (uint keyval);
  757.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  758. gdk-3.0.vapi:5850.2-5850.35: note: previous definition of `keyval_to_lower' was here
  759.     public static uint keyval_to_lower (uint keyval);
  760.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  761. gdk-2.0.vapi:1849.2-1849.39: error: `Gdk' already contains a definition for `keyval_to_unicode'
  762.     public static uint32 keyval_to_unicode (uint keyval);
  763.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  764. gdk-3.0.vapi:5852.2-5852.39: note: previous definition of `keyval_to_unicode' was here
  765.     public static uint32 keyval_to_unicode (uint keyval);
  766.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  767. gdk-2.0.vapi:1851.2-1851.35: error: `Gdk' already contains a definition for `keyval_to_upper'
  768.     public static uint keyval_to_upper (uint keyval);
  769.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  770. gdk-3.0.vapi:5854.2-5854.35: note: previous definition of `keyval_to_upper' was here
  771.     public static uint keyval_to_upper (uint keyval);
  772.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  773. gdk-2.0.vapi:1853.2-1853.54: error: `Gdk' already contains a definition for `list_visuals'
  774.     public static GLib.List<weak Gdk.Visual> list_visuals ();
  775.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  776. gdk-3.0.vapi:5856.2-5856.54: note: previous definition of `list_visuals' was here
  777.     public static GLib.List<weak Gdk.Visual> list_visuals ();
  778.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  779. gdk-2.0.vapi:1855.2-1855.43: error: `Gdk' already contains a definition for `notify_startup_complete'
  780.     public static void notify_startup_complete ();
  781.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  782. gdk-3.0.vapi:5858.2-5858.43: note: previous definition of `notify_startup_complete' was here
  783.     public static void notify_startup_complete ();
  784.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  785. gdk-2.0.vapi:1857.2-1857.51: error: `Gdk' already contains a definition for `notify_startup_complete_with_id'
  786.     public static void notify_startup_complete_with_id (string startup_id);
  787.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  788. gdk-3.0.vapi:5860.2-5860.51: note: previous definition of `notify_startup_complete_with_id' was here
  789.     public static void notify_startup_complete_with_id (string startup_id);
  790.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  791. gdk-2.0.vapi:1859.2-1859.64: error: `Gdk' already contains a definition for `offscreen_window_get_embedder'
  792.     public static unowned Gdk.Window? offscreen_window_get_embedder (Gdk.Window window);
  793.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  794. gdk-3.0.vapi:5862.2-5862.64: note: previous definition of `offscreen_window_get_embedder' was here
  795.     public static unowned Gdk.Window? offscreen_window_get_embedder (Gdk.Window window);
  796.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  797. gdk-2.0.vapi:1863.2-1863.49: error: `Gdk' already contains a definition for `offscreen_window_set_embedder'
  798.     public static void offscreen_window_set_embedder (Gdk.Window window, Gdk.Window embedder);
  799.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  800. gdk-3.0.vapi:5866.2-5866.49: note: previous definition of `offscreen_window_set_embedder' was here
  801.     public static void offscreen_window_set_embedder (Gdk.Window window, Gdk.Window embedder);
  802.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  803. gdk-2.0.vapi:1865.2-1865.54: error: `Gdk' already contains a definition for `pango_context_get'
  804.     public static unowned Pango.Context pango_context_get ();
  805.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  806. gdk-3.0.vapi:5868.2-5868.46: note: previous definition of `pango_context_get' was here
  807.     public static Pango.Context pango_context_get ();
  808.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  809. gdk-2.0.vapi:1867.2-1867.65: error: `Gdk' already contains a definition for `pango_context_get_for_screen'
  810.     public static unowned Pango.Context pango_context_get_for_screen (Gdk.Screen screen);
  811.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  812. gdk-3.0.vapi:5870.2-5870.57: note: previous definition of `pango_context_get_for_screen' was here
  813.     public static Pango.Context pango_context_get_for_screen (Gdk.Screen screen);
  814.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  815. gdk-2.0.vapi:1869.2-1869.62: error: `Gdk' already contains a definition for `pango_layout_get_clip_region'
  816.     public static unowned Gdk.Region pango_layout_get_clip_region (Pango.Layout layout, int x_origin, int y_origin, int index_ranges, int n_ranges);
  817.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  818. gdk-3.0.vapi:5872.2-5872.56: note: previous definition of `pango_layout_get_clip_region' was here
  819.     public static Cairo.Region pango_layout_get_clip_region (Pango.Layout layout, int x_origin, int y_origin, int index_ranges, int n_ranges);
  820.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  821. gdk-2.0.vapi:1873.2-1873.30: error: `Gdk' already contains a definition for `parse_args'
  822.     public static void parse_args (int argc, string argv);
  823.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  824. gdk-3.0.vapi:5874.2-5874.30: note: previous definition of `parse_args' was here
  825.     public static void parse_args ([CCode (array_length_cname = "argc", array_length_pos = 0.5)] ref unowned string[] argv);
  826.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  827. gdk-2.0.vapi:1885.2-1885.42: error: `Gdk' already contains a definition for `pointer_grab'
  828.     public static Gdk.GrabStatus pointer_grab (Gdk.Window window, bool owner_events, Gdk.EventMask event_mask, Gdk.Window? confine_to, Gdk.Cursor? cursor, uint32 time_);
  829.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  830. gdk-3.0.vapi:5881.2-5881.42: note: previous definition of `pointer_grab' was here
  831.     public static Gdk.GrabStatus pointer_grab (Gdk.Window window, bool owner_events, Gdk.EventMask event_mask, Gdk.Window? confine_to, Gdk.Cursor? cursor, uint32 time_);
  832.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  833. gdk-2.0.vapi:1889.2-1889.38: error: `Gdk' already contains a definition for `pointer_is_grabbed'
  834.     public static bool pointer_is_grabbed ();
  835.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  836. gdk-3.0.vapi:5884.2-5884.38: note: previous definition of `pointer_is_grabbed' was here
  837.     public static bool pointer_is_grabbed ();
  838.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  839. gdk-2.0.vapi:1891.2-1891.34: error: `Gdk' already contains a definition for `pointer_ungrab'
  840.     public static void pointer_ungrab (uint32 time_);
  841.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  842. gdk-3.0.vapi:5887.2-5887.34: note: previous definition of `pointer_ungrab' was here
  843.     public static void pointer_ungrab (uint32 time_);
  844.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  845. gdk-2.0.vapi:1893.2-1893.41: error: `Gdk' already contains a definition for `pre_parse_libgtk_only'
  846.     public static void pre_parse_libgtk_only ();
  847.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  848. gdk-3.0.vapi:5889.2-5889.41: note: previous definition of `pre_parse_libgtk_only' was here
  849.     public static void pre_parse_libgtk_only ();
  850.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  851. gdk-2.0.vapi:1895.2-1895.35: error: `Gdk' already contains a definition for `property_change'
  852.     public static void property_change (Gdk.Window window, Gdk.Atom property, Gdk.Atom type, int format, Gdk.PropMode mode, [CCode (array_length = false)] uchar[] data, int nelements);
  853.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  854. gdk-3.0.vapi:5891.2-5891.35: note: previous definition of `property_change' was here
  855.     public static void property_change (Gdk.Window window, Gdk.Atom property, Gdk.Atom type, int format, Gdk.PropMode mode, [CCode (array_length_cname = "nelements", array_length_pos = 6.1, type = "guchar*")] uint8[] data);
  856.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  857. gdk-2.0.vapi:1897.2-1897.35: error: `Gdk' already contains a definition for `property_delete'
  858.     public static void property_delete (Gdk.Window window, Gdk.Atom property);
  859.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  860. gdk-3.0.vapi:5893.2-5893.35: note: previous definition of `property_delete' was here
  861.     public static void property_delete (Gdk.Window window, Gdk.Atom property);
  862.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  863. gdk-2.0.vapi:1899.2-1899.32: error: `Gdk' already contains a definition for `property_get'
  864.     public static bool property_get (Gdk.Window window, Gdk.Atom property, Gdk.Atom type, ulong offset, ulong length, int pdelete, out Gdk.Atom actual_property_type, out int actual_format, [CCode (array_length_pos = 8.9)] out uchar[] data);
  865.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  866. gdk-3.0.vapi:5895.2-5895.32: note: previous definition of `property_get' was here
  867.     public static bool property_get (Gdk.Window window, Gdk.Atom property, Gdk.Atom type, ulong offset, ulong length, int pdelete, out Gdk.Atom actual_property_type, out int actual_format, [CCode (array_length_cname = "actual_length", array_length_pos = 8.5)] out uint8[] data);
  868.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  869. gdk-2.0.vapi:1901.2-1901.32: error: `Gdk' already contains a definition for `query_depths'
  870.     public static void query_depths (int depths, int count);
  871.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  872. gdk-3.0.vapi:5897.2-5897.32: note: previous definition of `query_depths' was here
  873.     public static void query_depths ([CCode (array_length_cname = "count", array_length_pos = 1.1)] out unowned int[] depths);
  874.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  875. gdk-2.0.vapi:1903.2-1903.38: error: `Gdk' already contains a definition for `query_visual_types'
  876.     public static void query_visual_types (out Gdk.VisualType visual_types, int count);
  877.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  878. gdk-3.0.vapi:5899.2-5899.38: note: previous definition of `query_visual_types' was here
  879.     public static void query_visual_types ([CCode (array_length_cname = "count", array_length_pos = 1.1)] out unowned Gdk.VisualType[] visual_types);
  880.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  881. gdk-2.0.vapi:1930.2-1930.37: error: `Gdk' already contains a definition for `selection_convert'
  882.     public static void selection_convert (Gdk.Window requestor, Gdk.Atom selection, Gdk.Atom target, uint32 time_);
  883.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  884. gdk-3.0.vapi:5902.2-5902.37: note: previous definition of `selection_convert' was here
  885.     public static void selection_convert (Gdk.Window requestor, Gdk.Atom selection, Gdk.Atom target, uint32 time_);
  886.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  887. gdk-2.0.vapi:1933.2-1933.53: error: `Gdk' already contains a definition for `selection_owner_get'
  888.     public static unowned Gdk.Window selection_owner_get (Gdk.Atom selection);
  889.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  890. gdk-3.0.vapi:5905.2-5905.53: note: previous definition of `selection_owner_get' was here
  891.     public static unowned Gdk.Window selection_owner_get (Gdk.Atom selection);
  892.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  893. gdk-2.0.vapi:1936.2-1936.65: error: `Gdk' already contains a definition for `selection_owner_get_for_display'
  894.     public static unowned Gdk.Window selection_owner_get_for_display (Gdk.Display display, Gdk.Atom selection);
  895.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  896. gdk-3.0.vapi:5908.2-5908.65: note: previous definition of `selection_owner_get_for_display' was here
  897.     public static unowned Gdk.Window selection_owner_get_for_display (Gdk.Display display, Gdk.Atom selection);
  898.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  899. gdk-2.0.vapi:1939.2-1939.39: error: `Gdk' already contains a definition for `selection_owner_set'
  900.     public static bool selection_owner_set (Gdk.Window owner, Gdk.Atom selection, uint32 time_, bool send_event);
  901.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  902. gdk-3.0.vapi:5911.2-5911.39: note: previous definition of `selection_owner_set' was here
  903.     public static bool selection_owner_set (Gdk.Window owner, Gdk.Atom selection, uint32 time_, bool send_event);
  904.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  905. gdk-2.0.vapi:1942.2-1942.51: error: `Gdk' already contains a definition for `selection_owner_set_for_display'
  906.     public static bool selection_owner_set_for_display (Gdk.Display display, Gdk.Window owner, Gdk.Atom selection, uint32 time_, bool send_event);
  907.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  908. gdk-3.0.vapi:5914.2-5914.51: note: previous definition of `selection_owner_set_for_display' was here
  909.     public static bool selection_owner_set_for_display (Gdk.Display display, Gdk.Window owner, Gdk.Atom selection, uint32 time_, bool send_event);
  910.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  911. gdk-2.0.vapi:1945.2-1945.41: error: `Gdk' already contains a definition for `selection_property_get'
  912.     public static int selection_property_get (Gdk.Window requestor, uchar[] data, out Gdk.Atom prop_type, int prop_format);
  913.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  914. gdk-3.0.vapi:5917.2-5917.41: note: previous definition of `selection_property_get' was here
  915.     public static int selection_property_get (Gdk.Window requestor, uchar[] data, out Gdk.Atom prop_type, int prop_format);
  916.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  917. gdk-2.0.vapi:1948.2-1948.41: error: `Gdk' already contains a definition for `selection_send_notify'
  918.     public static void selection_send_notify (Gdk.NativeWindow requestor, Gdk.Atom selection, Gdk.Atom target, Gdk.Atom property, uint32 time_);
  919.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  920. gdk-3.0.vapi:5920.2-5920.41: note: previous definition of `selection_send_notify' was here
  921.     public static void selection_send_notify (Gdk.Window requestor, Gdk.Atom selection, Gdk.Atom target, Gdk.Atom property, uint32 time_);
  922.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  923. gdk-2.0.vapi:1951.2-1951.53: error: `Gdk' already contains a definition for `selection_send_notify_for_display'
  924.     public static void selection_send_notify_for_display (Gdk.Display display, Gdk.NativeWindow requestor, Gdk.Atom selection, Gdk.Atom target, Gdk.Atom property, uint32 time_);
  925.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  926. gdk-3.0.vapi:5923.2-5923.53: note: previous definition of `selection_send_notify_for_display' was here
  927.     public static void selection_send_notify_for_display (Gdk.Display display, Gdk.Window requestor, Gdk.Atom selection, Gdk.Atom target, Gdk.Atom property, uint32 time_);
  928.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  929. gdk-2.0.vapi:1953.2-1953.41: error: `Gdk' already contains a definition for `set_double_click_time'
  930.     public static void set_double_click_time (uint msec);
  931.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  932. gdk-3.0.vapi:5925.2-5925.41: note: previous definition of `set_double_click_time' was here
  933.     public static void set_double_click_time (uint msec);
  934.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  935. gdk-2.0.vapi:1959.2-1959.37: error: `Gdk' already contains a definition for `set_program_class'
  936.     public static void set_program_class (string program_class);
  937.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  938. gdk-3.0.vapi:5927.2-5927.37: note: previous definition of `set_program_class' was here
  939.     public static void set_program_class (string program_class);
  940.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  941. gdk-2.0.vapi:1961.2-1961.35: error: `Gdk' already contains a definition for `set_show_events'
  942.     public static void set_show_events (bool show_events);
  943.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  944. gdk-3.0.vapi:5929.2-5929.35: note: previous definition of `set_show_events' was here
  945.     public static void set_show_events (bool show_events);
  946.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  947. gdk-2.0.vapi:1965.2-1965.31: error: `Gdk' already contains a definition for `setting_get'
  948.     public static bool setting_get (string name, GLib.Value value);
  949.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  950. gdk-3.0.vapi:5931.2-5931.31: note: previous definition of `setting_get' was here
  951.     public static bool setting_get (string name, GLib.Value value);
  952.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  953. gdk-2.0.vapi:1977.2-1977.36: error: `Gdk' already contains a definition for `test_render_sync'
  954.     public static void test_render_sync (Gdk.Window window);
  955.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  956. gdk-3.0.vapi:5933.2-5933.36: note: previous definition of `test_render_sync' was here
  957.     public static void test_render_sync (Gdk.Window window);
  958.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  959. gdk-2.0.vapi:1979.2-1979.40: error: `Gdk' already contains a definition for `test_simulate_button'
  960.     public static bool test_simulate_button (Gdk.Window window, int x, int y, uint button, Gdk.ModifierType modifiers, Gdk.EventType button_pressrelease);
  961.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  962. gdk-3.0.vapi:5935.2-5935.40: note: previous definition of `test_simulate_button' was here
  963.     public static bool test_simulate_button (Gdk.Window window, int x, int y, uint button, Gdk.ModifierType modifiers, Gdk.EventType button_pressrelease);
  964.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  965. gdk-2.0.vapi:1981.2-1981.37: error: `Gdk' already contains a definition for `test_simulate_key'
  966.     public static bool test_simulate_key (Gdk.Window window, int x, int y, uint keyval, Gdk.ModifierType modifiers, Gdk.EventType key_pressrelease);
  967.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  968. gdk-3.0.vapi:5937.2-5937.37: note: previous definition of `test_simulate_key' was here
  969.     public static bool test_simulate_key (Gdk.Window window, int x, int y, uint keyval, Gdk.ModifierType modifiers, Gdk.EventType key_pressrelease);
  970.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  971. gdk-2.0.vapi:1989.2-1989.57: error: `Gdk' already contains a definition for `text_property_to_utf8_list_for_display'
  972.     public static int text_property_to_utf8_list_for_display (Gdk.Display display, Gdk.Atom encoding, int format, uchar[] text, int length, string list);
  973.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  974. gdk-3.0.vapi:5939.2-5939.57: note: previous definition of `text_property_to_utf8_list_for_display' was here
  975.     public static int text_property_to_utf8_list_for_display (Gdk.Display display, Gdk.Atom encoding, int format, [CCode (array_length_cname = "length", array_length_pos = 4.5)] uint8[] text, [CCode (array_length = false, array_null_terminated = true)] out string[] list);
  976.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  977. gdk-2.0.vapi:1991.2-1991.36: error: `Gdk' already contains a definition for `threads_add_idle'
  978.     public static uint threads_add_idle (GLib.SourceFunc function);
  979.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  980. gdk-3.0.vapi:5941.2-5941.36: note: previous definition of `threads_add_idle' was here
  981.     public static uint threads_add_idle (GLib.SourceFunc function);
  982.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  983. gdk-2.0.vapi:1993.2-1993.41: error: `Gdk' already contains a definition for `threads_add_idle_full'
  984.     public static uint threads_add_idle_full (int priority, owned GLib.SourceFunc function);
  985.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  986. gdk-3.0.vapi:5943.2-5943.41: note: previous definition of `threads_add_idle_full' was here
  987.     public static uint threads_add_idle_full (int priority, owned GLib.SourceFunc function);
  988.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  989. gdk-2.0.vapi:1995.2-1995.39: error: `Gdk' already contains a definition for `threads_add_timeout'
  990.     public static uint threads_add_timeout (uint interval, GLib.SourceFunc function);
  991.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  992. gdk-3.0.vapi:5945.2-5945.39: note: previous definition of `threads_add_timeout' was here
  993.     public static uint threads_add_timeout (uint interval, GLib.SourceFunc function);
  994.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  995. gdk-2.0.vapi:1997.2-1997.44: error: `Gdk' already contains a definition for `threads_add_timeout_full'
  996.     public static uint threads_add_timeout_full (int priority, uint interval, owned GLib.SourceFunc function);
  997.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  998. gdk-3.0.vapi:5947.2-5947.44: note: previous definition of `threads_add_timeout_full' was here
  999.     public static uint threads_add_timeout_full (int priority, uint interval, owned GLib.SourceFunc function);
  1000.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1001. gdk-2.0.vapi:1999.2-1999.47: error: `Gdk' already contains a definition for `threads_add_timeout_seconds'
  1002.     public static uint threads_add_timeout_seconds (uint interval, GLib.SourceFunc function);
  1003.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1004. gdk-3.0.vapi:5949.2-5949.47: note: previous definition of `threads_add_timeout_seconds' was here
  1005.     public static uint threads_add_timeout_seconds (uint interval, GLib.SourceFunc function);
  1006.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1007. gdk-2.0.vapi:2001.2-2001.52: error: `Gdk' already contains a definition for `threads_add_timeout_seconds_full'
  1008.     public static uint threads_add_timeout_seconds_full (int priority, uint interval, owned GLib.SourceFunc function);
  1009.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1010. gdk-3.0.vapi:5951.2-5951.52: note: previous definition of `threads_add_timeout_seconds_full' was here
  1011.     public static uint threads_add_timeout_seconds_full (int priority, uint interval, owned GLib.SourceFunc function);
  1012.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1013. gdk-2.0.vapi:2003.2-2003.33: error: `Gdk' already contains a definition for `threads_enter'
  1014.     public static void threads_enter ();
  1015.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1016. gdk-3.0.vapi:5953.2-5953.33: note: previous definition of `threads_enter' was here
  1017.     public static void threads_enter ();
  1018.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1019. gdk-2.0.vapi:2005.2-2005.32: error: `Gdk' already contains a definition for `threads_init'
  1020.     public static void threads_init ();
  1021.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1022. gdk-3.0.vapi:5955.2-5955.32: note: previous definition of `threads_init' was here
  1023.     public static void threads_init ();
  1024.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1025. gdk-2.0.vapi:2007.2-2007.33: error: `Gdk' already contains a definition for `threads_leave'
  1026.     public static void threads_leave ();
  1027.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1028. gdk-3.0.vapi:5957.2-5957.33: note: previous definition of `threads_leave' was here
  1029.     public static void threads_leave ();
  1030.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1031. gdk-2.0.vapi:2009.2-2009.46: error: `Gdk' already contains a definition for `threads_set_lock_functions'
  1032.     public static void threads_set_lock_functions (GLib.Callback enter_fn, GLib.Callback leave_fn);
  1033.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1034. gdk-3.0.vapi:5959.2-5959.46: note: previous definition of `threads_set_lock_functions' was here
  1035.     public static void threads_set_lock_functions (GLib.Callback enter_fn, GLib.Callback leave_fn);
  1036.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1037. gdk-2.0.vapi:2011.2-2011.37: error: `Gdk' already contains a definition for `unicode_to_keyval'
  1038.     public static uint unicode_to_keyval (uint32 wc);
  1039.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1040. gdk-3.0.vapi:5961.2-5961.37: note: previous definition of `unicode_to_keyval' was here
  1041.     public static uint unicode_to_keyval (uint32 wc);
  1042.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1043. gdk-2.0.vapi:2017.2-2017.51: error: `Gdk' already contains a definition for `utf8_to_string_target'
  1044.     public static unowned string utf8_to_string_target (string str);
  1045.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1046. gdk-3.0.vapi:5963.2-5963.43: note: previous definition of `utf8_to_string_target' was here
  1047.     public static string utf8_to_string_target (string str);
  1048.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1049. gtk+-2.0.vapi:7.3-7.28: error: `Gtk.Stock' already contains a definition for `ABOUT'
  1050.         public const string ABOUT;
  1051.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1052. gtk+-3.0.vapi:7.3-7.28: note: previous definition of `ABOUT' was here
  1053.         public const string ABOUT;
  1054.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1055. gtk+-2.0.vapi:9.3-9.26: error: `Gtk.Stock' already contains a definition for `ADD'
  1056.         public const string ADD;
  1057.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1058. gtk+-3.0.vapi:9.3-9.26: note: previous definition of `ADD' was here
  1059.         public const string ADD;
  1060.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1061. gtk+-2.0.vapi:11.3-11.28: error: `Gtk.Stock' already contains a definition for `APPLY'
  1062.         public const string APPLY;
  1063.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1064. gtk+-3.0.vapi:11.3-11.28: note: previous definition of `APPLY' was here
  1065.         public const string APPLY;
  1066.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1067. gtk+-2.0.vapi:13.3-13.27: error: `Gtk.Stock' already contains a definition for `BOLD'
  1068.         public const string BOLD;
  1069.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1070. gtk+-3.0.vapi:13.3-13.27: note: previous definition of `BOLD' was here
  1071.         public const string BOLD;
  1072.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1073. gtk+-2.0.vapi:15.3-15.29: error: `Gtk.Stock' already contains a definition for `CANCEL'
  1074.         public const string CANCEL;
  1075.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1076. gtk+-3.0.vapi:15.3-15.29: note: previous definition of `CANCEL' was here
  1077.         public const string CANCEL;
  1078.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1079. gtk+-2.0.vapi:17.3-17.40: error: `Gtk.Stock' already contains a definition for `CAPS_LOCK_WARNING'
  1080.         public const string CAPS_LOCK_WARNING;
  1081.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1082. gtk+-3.0.vapi:17.3-17.40: note: previous definition of `CAPS_LOCK_WARNING' was here
  1083.         public const string CAPS_LOCK_WARNING;
  1084.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1085. gtk+-2.0.vapi:19.3-19.28: error: `Gtk.Stock' already contains a definition for `CDROM'
  1086.         public const string CDROM;
  1087.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1088. gtk+-3.0.vapi:19.3-19.28: note: previous definition of `CDROM' was here
  1089.         public const string CDROM;
  1090.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1091. gtk+-2.0.vapi:21.3-21.28: error: `Gtk.Stock' already contains a definition for `CLEAR'
  1092.         public const string CLEAR;
  1093.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1094. gtk+-3.0.vapi:21.3-21.28: note: previous definition of `CLEAR' was here
  1095.         public const string CLEAR;
  1096.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1097. gtk+-2.0.vapi:23.3-23.28: error: `Gtk.Stock' already contains a definition for `CLOSE'
  1098.         public const string CLOSE;
  1099.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1100. gtk+-3.0.vapi:23.3-23.28: note: previous definition of `CLOSE' was here
  1101.         public const string CLOSE;
  1102.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1103. gtk+-2.0.vapi:25.3-25.35: error: `Gtk.Stock' already contains a definition for `COLOR_PICKER'
  1104.         public const string COLOR_PICKER;
  1105.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1106. gtk+-3.0.vapi:25.3-25.35: note: previous definition of `COLOR_PICKER' was here
  1107.         public const string COLOR_PICKER;
  1108.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1109. gtk+-2.0.vapi:27.3-27.30: error: `Gtk.Stock' already contains a definition for `CONNECT'
  1110.         public const string CONNECT;
  1111.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1112. gtk+-3.0.vapi:27.3-27.30: note: previous definition of `CONNECT' was here
  1113.         public const string CONNECT;
  1114.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1115. gtk+-2.0.vapi:29.3-29.30: error: `Gtk.Stock' already contains a definition for `CONVERT'
  1116.         public const string CONVERT;
  1117.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1118. gtk+-3.0.vapi:29.3-29.30: note: previous definition of `CONVERT' was here
  1119.         public const string CONVERT;
  1120.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1121. gtk+-2.0.vapi:31.3-31.27: error: `Gtk.Stock' already contains a definition for `COPY'
  1122.         public const string COPY;
  1123.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1124. gtk+-3.0.vapi:31.3-31.27: note: previous definition of `COPY' was here
  1125.         public const string COPY;
  1126.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1127. gtk+-2.0.vapi:33.3-33.26: error: `Gtk.Stock' already contains a definition for `CUT'
  1128.         public const string CUT;
  1129.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1130. gtk+-3.0.vapi:33.3-33.26: note: previous definition of `CUT' was here
  1131.         public const string CUT;
  1132.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1133. gtk+-2.0.vapi:35.3-35.29: error: `Gtk.Stock' already contains a definition for `DELETE'
  1134.         public const string DELETE;
  1135.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1136. gtk+-3.0.vapi:35.3-35.29: note: previous definition of `DELETE' was here
  1137.         public const string DELETE;
  1138.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1139. gtk+-2.0.vapi:37.3-37.44: error: `Gtk.Stock' already contains a definition for `DIALOG_AUTHENTICATION'
  1140.         public const string DIALOG_AUTHENTICATION;
  1141.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1142. gtk+-3.0.vapi:37.3-37.44: note: previous definition of `DIALOG_AUTHENTICATION' was here
  1143.         public const string DIALOG_AUTHENTICATION;
  1144.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1145. gtk+-2.0.vapi:39.3-39.35: error: `Gtk.Stock' already contains a definition for `DIALOG_ERROR'
  1146.         public const string DIALOG_ERROR;
  1147.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1148. gtk+-3.0.vapi:39.3-39.35: note: previous definition of `DIALOG_ERROR' was here
  1149.         public const string DIALOG_ERROR;
  1150.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1151. gtk+-2.0.vapi:41.3-41.34: error: `Gtk.Stock' already contains a definition for `DIALOG_INFO'
  1152.         public const string DIALOG_INFO;
  1153.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1154. gtk+-3.0.vapi:41.3-41.34: note: previous definition of `DIALOG_INFO' was here
  1155.         public const string DIALOG_INFO;
  1156.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1157. gtk+-2.0.vapi:43.3-43.38: error: `Gtk.Stock' already contains a definition for `DIALOG_QUESTION'
  1158.         public const string DIALOG_QUESTION;
  1159.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1160. gtk+-3.0.vapi:43.3-43.38: note: previous definition of `DIALOG_QUESTION' was here
  1161.         public const string DIALOG_QUESTION;
  1162.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1163. gtk+-2.0.vapi:45.3-45.37: error: `Gtk.Stock' already contains a definition for `DIALOG_WARNING'
  1164.         public const string DIALOG_WARNING;
  1165.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1166. gtk+-3.0.vapi:45.3-45.37: note: previous definition of `DIALOG_WARNING' was here
  1167.         public const string DIALOG_WARNING;
  1168.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1169. gtk+-2.0.vapi:47.3-47.32: error: `Gtk.Stock' already contains a definition for `DIRECTORY'
  1170.         public const string DIRECTORY;
  1171.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1172. gtk+-3.0.vapi:47.3-47.32: note: previous definition of `DIRECTORY' was here
  1173.         public const string DIRECTORY;
  1174.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1175. gtk+-2.0.vapi:49.3-49.30: error: `Gtk.Stock' already contains a definition for `DISCARD'
  1176.         public const string DISCARD;
  1177.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1178. gtk+-3.0.vapi:49.3-49.30: note: previous definition of `DISCARD' was here
  1179.         public const string DISCARD;
  1180.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1181. gtk+-2.0.vapi:51.3-51.33: error: `Gtk.Stock' already contains a definition for `DISCONNECT'
  1182.         public const string DISCONNECT;
  1183.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1184. gtk+-3.0.vapi:51.3-51.33: note: previous definition of `DISCONNECT' was here
  1185.         public const string DISCONNECT;
  1186.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1187. gtk+-2.0.vapi:53.3-53.26: error: `Gtk.Stock' already contains a definition for `DND'
  1188.         public const string DND;
  1189.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1190. gtk+-3.0.vapi:53.3-53.26: note: previous definition of `DND' was here
  1191.         public const string DND;
  1192.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1193. gtk+-2.0.vapi:55.3-55.35: error: `Gtk.Stock' already contains a definition for `DND_MULTIPLE'
  1194.         public const string DND_MULTIPLE;
  1195.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1196. gtk+-3.0.vapi:55.3-55.35: note: previous definition of `DND_MULTIPLE' was here
  1197.         public const string DND_MULTIPLE;
  1198.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1199. gtk+-2.0.vapi:57.3-57.27: error: `Gtk.Stock' already contains a definition for `EDIT'
  1200.         public const string EDIT;
  1201.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1202. gtk+-3.0.vapi:57.3-57.27: note: previous definition of `EDIT' was here
  1203.         public const string EDIT;
  1204.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1205. gtk+-2.0.vapi:59.3-59.30: error: `Gtk.Stock' already contains a definition for `EXECUTE'
  1206.         public const string EXECUTE;
  1207.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1208. gtk+-3.0.vapi:59.3-59.30: note: previous definition of `EXECUTE' was here
  1209.         public const string EXECUTE;
  1210.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1211. gtk+-2.0.vapi:61.3-61.27: error: `Gtk.Stock' already contains a definition for `FILE'
  1212.         public const string FILE;
  1213.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1214. gtk+-3.0.vapi:61.3-61.27: note: previous definition of `FILE' was here
  1215.         public const string FILE;
  1216.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1217. gtk+-2.0.vapi:63.3-63.27: error: `Gtk.Stock' already contains a definition for `FIND'
  1218.         public const string FIND;
  1219.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1220. gtk+-3.0.vapi:63.3-63.27: note: previous definition of `FIND' was here
  1221.         public const string FIND;
  1222.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1223. gtk+-2.0.vapi:65.3-65.39: error: `Gtk.Stock' already contains a definition for `FIND_AND_REPLACE'
  1224.         public const string FIND_AND_REPLACE;
  1225.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1226. gtk+-3.0.vapi:65.3-65.39: note: previous definition of `FIND_AND_REPLACE' was here
  1227.         public const string FIND_AND_REPLACE;
  1228.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1229. gtk+-2.0.vapi:67.3-67.29: error: `Gtk.Stock' already contains a definition for `FLOPPY'
  1230.         public const string FLOPPY;
  1231.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1232. gtk+-3.0.vapi:67.3-67.29: note: previous definition of `FLOPPY' was here
  1233.         public const string FLOPPY;
  1234.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1235. gtk+-2.0.vapi:69.3-69.33: error: `Gtk.Stock' already contains a definition for `FULLSCREEN'
  1236.         public const string FULLSCREEN;
  1237.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1238. gtk+-3.0.vapi:69.3-69.33: note: previous definition of `FULLSCREEN' was here
  1239.         public const string FULLSCREEN;
  1240.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1241. gtk+-2.0.vapi:71.3-71.34: error: `Gtk.Stock' already contains a definition for `GOTO_BOTTOM'
  1242.         public const string GOTO_BOTTOM;
  1243.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1244. gtk+-3.0.vapi:71.3-71.34: note: previous definition of `GOTO_BOTTOM' was here
  1245.         public const string GOTO_BOTTOM;
  1246.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1247. gtk+-2.0.vapi:73.3-73.33: error: `Gtk.Stock' already contains a definition for `GOTO_FIRST'
  1248.         public const string GOTO_FIRST;
  1249.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1250. gtk+-3.0.vapi:73.3-73.33: note: previous definition of `GOTO_FIRST' was here
  1251.         public const string GOTO_FIRST;
  1252.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1253. gtk+-2.0.vapi:75.3-75.32: error: `Gtk.Stock' already contains a definition for `GOTO_LAST'
  1254.         public const string GOTO_LAST;
  1255.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1256. gtk+-3.0.vapi:75.3-75.32: note: previous definition of `GOTO_LAST' was here
  1257.         public const string GOTO_LAST;
  1258.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1259. gtk+-2.0.vapi:77.3-77.31: error: `Gtk.Stock' already contains a definition for `GOTO_TOP'
  1260.         public const string GOTO_TOP;
  1261.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1262. gtk+-3.0.vapi:77.3-77.31: note: previous definition of `GOTO_TOP' was here
  1263.         public const string GOTO_TOP;
  1264.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1265. gtk+-2.0.vapi:79.3-79.30: error: `Gtk.Stock' already contains a definition for `GO_BACK'
  1266.         public const string GO_BACK;
  1267.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1268. gtk+-3.0.vapi:79.3-79.30: note: previous definition of `GO_BACK' was here
  1269.         public const string GO_BACK;
  1270.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1271. gtk+-2.0.vapi:81.3-81.30: error: `Gtk.Stock' already contains a definition for `GO_DOWN'
  1272.         public const string GO_DOWN;
  1273.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1274. gtk+-3.0.vapi:81.3-81.30: note: previous definition of `GO_DOWN' was here
  1275.         public const string GO_DOWN;
  1276.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1277. gtk+-2.0.vapi:83.3-83.33: error: `Gtk.Stock' already contains a definition for `GO_FORWARD'
  1278.         public const string GO_FORWARD;
  1279.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1280. gtk+-3.0.vapi:83.3-83.33: note: previous definition of `GO_FORWARD' was here
  1281.         public const string GO_FORWARD;
  1282.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1283. gtk+-2.0.vapi:85.3-85.28: error: `Gtk.Stock' already contains a definition for `GO_UP'
  1284.         public const string GO_UP;
  1285.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1286. gtk+-3.0.vapi:85.3-85.28: note: previous definition of `GO_UP' was here
  1287.         public const string GO_UP;
  1288.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1289. gtk+-2.0.vapi:87.3-87.31: error: `Gtk.Stock' already contains a definition for `HARDDISK'
  1290.         public const string HARDDISK;
  1291.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1292. gtk+-3.0.vapi:87.3-87.31: note: previous definition of `HARDDISK' was here
  1293.         public const string HARDDISK;
  1294.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1295. gtk+-2.0.vapi:89.3-89.27: error: `Gtk.Stock' already contains a definition for `HELP'
  1296.         public const string HELP;
  1297.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1298. gtk+-3.0.vapi:89.3-89.27: note: previous definition of `HELP' was here
  1299.         public const string HELP;
  1300.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1301. gtk+-2.0.vapi:91.3-91.27: error: `Gtk.Stock' already contains a definition for `HOME'
  1302.         public const string HOME;
  1303.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1304. gtk+-3.0.vapi:91.3-91.27: note: previous definition of `HOME' was here
  1305.         public const string HOME;
  1306.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1307. gtk+-2.0.vapi:93.3-93.29: error: `Gtk.Stock' already contains a definition for `INDENT'
  1308.         public const string INDENT;
  1309.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1310. gtk+-3.0.vapi:93.3-93.29: note: previous definition of `INDENT' was here
  1311.         public const string INDENT;
  1312.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1313. gtk+-2.0.vapi:95.3-95.28: error: `Gtk.Stock' already contains a definition for `INDEX'
  1314.         public const string INDEX;
  1315.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1316. gtk+-3.0.vapi:95.3-95.28: note: previous definition of `INDEX' was here
  1317.         public const string INDEX;
  1318.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1319. gtk+-2.0.vapi:97.3-97.27: error: `Gtk.Stock' already contains a definition for `INFO'
  1320.         public const string INFO;
  1321.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1322. gtk+-3.0.vapi:97.3-97.27: note: previous definition of `INFO' was here
  1323.         public const string INFO;
  1324.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1325. gtk+-2.0.vapi:99.3-99.29: error: `Gtk.Stock' already contains a definition for `ITALIC'
  1326.         public const string ITALIC;
  1327.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1328. gtk+-3.0.vapi:99.3-99.29: note: previous definition of `ITALIC' was here
  1329.         public const string ITALIC;
  1330.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1331. gtk+-2.0.vapi:101.3-101.30: error: `Gtk.Stock' already contains a definition for `JUMP_TO'
  1332.         public const string JUMP_TO;
  1333.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1334. gtk+-3.0.vapi:101.3-101.30: note: previous definition of `JUMP_TO' was here
  1335.         public const string JUMP_TO;
  1336.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1337. gtk+-2.0.vapi:103.3-103.37: error: `Gtk.Stock' already contains a definition for `JUSTIFY_CENTER'
  1338.         public const string JUSTIFY_CENTER;
  1339.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1340. gtk+-3.0.vapi:103.3-103.37: note: previous definition of `JUSTIFY_CENTER' was here
  1341.         public const string JUSTIFY_CENTER;
  1342.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1343. gtk+-2.0.vapi:105.3-105.35: error: `Gtk.Stock' already contains a definition for `JUSTIFY_FILL'
  1344.         public const string JUSTIFY_FILL;
  1345.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1346. gtk+-3.0.vapi:105.3-105.35: note: previous definition of `JUSTIFY_FILL' was here
  1347.         public const string JUSTIFY_FILL;
  1348.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1349. gtk+-2.0.vapi:107.3-107.35: error: `Gtk.Stock' already contains a definition for `JUSTIFY_LEFT'
  1350.         public const string JUSTIFY_LEFT;
  1351.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1352. gtk+-3.0.vapi:107.3-107.35: note: previous definition of `JUSTIFY_LEFT' was here
  1353.         public const string JUSTIFY_LEFT;
  1354.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1355. gtk+-2.0.vapi:109.3-109.36: error: `Gtk.Stock' already contains a definition for `JUSTIFY_RIGHT'
  1356.         public const string JUSTIFY_RIGHT;
  1357.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1358. gtk+-3.0.vapi:109.3-109.36: note: previous definition of `JUSTIFY_RIGHT' was here
  1359.         public const string JUSTIFY_RIGHT;
  1360.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1361. gtk+-2.0.vapi:111.3-111.39: error: `Gtk.Stock' already contains a definition for `LEAVE_FULLSCREEN'
  1362.         public const string LEAVE_FULLSCREEN;
  1363.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1364. gtk+-3.0.vapi:111.3-111.39: note: previous definition of `LEAVE_FULLSCREEN' was here
  1365.         public const string LEAVE_FULLSCREEN;
  1366.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1367. gtk+-2.0.vapi:113.3-113.36: error: `Gtk.Stock' already contains a definition for `MEDIA_FORWARD'
  1368.         public const string MEDIA_FORWARD;
  1369.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1370. gtk+-3.0.vapi:113.3-113.36: note: previous definition of `MEDIA_FORWARD' was here
  1371.         public const string MEDIA_FORWARD;
  1372.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1373. gtk+-2.0.vapi:115.3-115.33: error: `Gtk.Stock' already contains a definition for `MEDIA_NEXT'
  1374.         public const string MEDIA_NEXT;
  1375.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1376. gtk+-3.0.vapi:115.3-115.33: note: previous definition of `MEDIA_NEXT' was here
  1377.         public const string MEDIA_NEXT;
  1378.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1379. gtk+-2.0.vapi:117.3-117.34: error: `Gtk.Stock' already contains a definition for `MEDIA_PAUSE'
  1380.         public const string MEDIA_PAUSE;
  1381.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1382. gtk+-3.0.vapi:117.3-117.34: note: previous definition of `MEDIA_PAUSE' was here
  1383.         public const string MEDIA_PAUSE;
  1384.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1385. gtk+-2.0.vapi:119.3-119.33: error: `Gtk.Stock' already contains a definition for `MEDIA_PLAY'
  1386.         public const string MEDIA_PLAY;
  1387.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1388. gtk+-3.0.vapi:119.3-119.33: note: previous definition of `MEDIA_PLAY' was here
  1389.         public const string MEDIA_PLAY;
  1390.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1391. gtk+-2.0.vapi:121.3-121.37: error: `Gtk.Stock' already contains a definition for `MEDIA_PREVIOUS'
  1392.         public const string MEDIA_PREVIOUS;
  1393.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1394. gtk+-3.0.vapi:121.3-121.37: note: previous definition of `MEDIA_PREVIOUS' was here
  1395.         public const string MEDIA_PREVIOUS;
  1396.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1397. gtk+-2.0.vapi:123.3-123.35: error: `Gtk.Stock' already contains a definition for `MEDIA_RECORD'
  1398.         public const string MEDIA_RECORD;
  1399.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1400. gtk+-3.0.vapi:123.3-123.35: note: previous definition of `MEDIA_RECORD' was here
  1401.         public const string MEDIA_RECORD;
  1402.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1403. gtk+-2.0.vapi:125.3-125.35: error: `Gtk.Stock' already contains a definition for `MEDIA_REWIND'
  1404.         public const string MEDIA_REWIND;
  1405.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1406. gtk+-3.0.vapi:125.3-125.35: note: previous definition of `MEDIA_REWIND' was here
  1407.         public const string MEDIA_REWIND;
  1408.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1409. gtk+-2.0.vapi:127.3-127.33: error: `Gtk.Stock' already contains a definition for `MEDIA_STOP'
  1410.         public const string MEDIA_STOP;
  1411.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1412. gtk+-3.0.vapi:127.3-127.33: note: previous definition of `MEDIA_STOP' was here
  1413.         public const string MEDIA_STOP;
  1414.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1415. gtk+-2.0.vapi:129.3-129.36: error: `Gtk.Stock' already contains a definition for `MISSING_IMAGE'
  1416.         public const string MISSING_IMAGE;
  1417.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1418. gtk+-3.0.vapi:129.3-129.36: note: previous definition of `MISSING_IMAGE' was here
  1419.         public const string MISSING_IMAGE;
  1420.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1421. gtk+-2.0.vapi:131.3-131.30: error: `Gtk.Stock' already contains a definition for `NETWORK'
  1422.         public const string NETWORK;
  1423.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1424. gtk+-3.0.vapi:131.3-131.30: note: previous definition of `NETWORK' was here
  1425.         public const string NETWORK;
  1426.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1427. gtk+-2.0.vapi:133.3-133.26: error: `Gtk.Stock' already contains a definition for `NEW'
  1428.         public const string NEW;
  1429.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1430. gtk+-3.0.vapi:133.3-133.26: note: previous definition of `NEW' was here
  1431.         public const string NEW;
  1432.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1433. gtk+-2.0.vapi:135.3-135.25: error: `Gtk.Stock' already contains a definition for `NO'
  1434.         public const string NO;
  1435.         ^^^^^^^^^^^^^^^^^^^^^^^
  1436. gtk+-3.0.vapi:135.3-135.25: note: previous definition of `NO' was here
  1437.         public const string NO;
  1438.         ^^^^^^^^^^^^^^^^^^^^^^^
  1439. gtk+-2.0.vapi:137.3-137.25: error: `Gtk.Stock' already contains a definition for `OK'
  1440.         public const string OK;
  1441.         ^^^^^^^^^^^^^^^^^^^^^^^
  1442. gtk+-3.0.vapi:137.3-137.25: note: previous definition of `OK' was here
  1443.         public const string OK;
  1444.         ^^^^^^^^^^^^^^^^^^^^^^^
  1445. gtk+-2.0.vapi:139.3-139.27: error: `Gtk.Stock' already contains a definition for `OPEN'
  1446.         public const string OPEN;
  1447.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1448. gtk+-3.0.vapi:139.3-139.27: note: previous definition of `OPEN' was here
  1449.         public const string OPEN;
  1450.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1451. gtk+-2.0.vapi:141.3-141.44: error: `Gtk.Stock' already contains a definition for `ORIENTATION_LANDSCAPE'
  1452.         public const string ORIENTATION_LANDSCAPE;
  1453.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1454. gtk+-3.0.vapi:141.3-141.44: note: previous definition of `ORIENTATION_LANDSCAPE' was here
  1455.         public const string ORIENTATION_LANDSCAPE;
  1456.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1457. gtk+-2.0.vapi:143.3-143.43: error: `Gtk.Stock' already contains a definition for `ORIENTATION_PORTRAIT'
  1458.         public const string ORIENTATION_PORTRAIT;
  1459.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1460. gtk+-3.0.vapi:143.3-143.43: note: previous definition of `ORIENTATION_PORTRAIT' was here
  1461.         public const string ORIENTATION_PORTRAIT;
  1462.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1463. gtk+-2.0.vapi:145.3-145.52: error: `Gtk.Stock' already contains a definition for `ORIENTATION_REVERSE_LANDSCAPE'
  1464.         public const string ORIENTATION_REVERSE_LANDSCAPE;
  1465.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1466. gtk+-3.0.vapi:145.3-145.52: note: previous definition of `ORIENTATION_REVERSE_LANDSCAPE' was here
  1467.         public const string ORIENTATION_REVERSE_LANDSCAPE;
  1468.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1469. gtk+-2.0.vapi:147.3-147.51: error: `Gtk.Stock' already contains a definition for `ORIENTATION_REVERSE_PORTRAIT'
  1470.         public const string ORIENTATION_REVERSE_PORTRAIT;
  1471.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1472. gtk+-3.0.vapi:147.3-147.51: note: previous definition of `ORIENTATION_REVERSE_PORTRAIT' was here
  1473.         public const string ORIENTATION_REVERSE_PORTRAIT;
  1474.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1475. gtk+-2.0.vapi:149.3-149.33: error: `Gtk.Stock' already contains a definition for `PAGE_SETUP'
  1476.         public const string PAGE_SETUP;
  1477.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1478. gtk+-3.0.vapi:149.3-149.33: note: previous definition of `PAGE_SETUP' was here
  1479.         public const string PAGE_SETUP;
  1480.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1481. gtk+-2.0.vapi:151.3-151.28: error: `Gtk.Stock' already contains a definition for `PASTE'
  1482.         public const string PASTE;
  1483.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1484. gtk+-3.0.vapi:151.3-151.28: note: previous definition of `PASTE' was here
  1485.         public const string PASTE;
  1486.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1487. gtk+-2.0.vapi:153.3-153.34: error: `Gtk.Stock' already contains a definition for `PREFERENCES'
  1488.         public const string PREFERENCES;
  1489.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1490. gtk+-3.0.vapi:153.3-153.34: note: previous definition of `PREFERENCES' was here
  1491.         public const string PREFERENCES;
  1492.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1493. gtk+-2.0.vapi:155.3-155.28: error: `Gtk.Stock' already contains a definition for `PRINT'
  1494.         public const string PRINT;
  1495.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1496. gtk+-3.0.vapi:155.3-155.28: note: previous definition of `PRINT' was here
  1497.         public const string PRINT;
  1498.         ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1499. gtk+-2.0.vapi:157.3-157.34: error: `Gtk.Stock' already contains a definition for `PRINT_ERROR'
  1500.         public const string PRINT_ERROR;
  1501.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1502. gtk+-3.0.vapi:157.3-157.34: note: previous definition of `PRINT_ERROR' was here
  1503.         public const string PRINT_ERROR;
  1504.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1505. gtk+-2.0.vapi:159.3-159.35: error: `Gtk.Stock' already contains a definition for `PRINT_PAUSED'
  1506.         public const string PRINT_PAUSED;
  1507.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1508. gtk+-3.0.vapi:159.3-159.35: note: previous definition of `PRINT_PAUSED' was here
  1509.         public const string PRINT_PAUSED;
  1510.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1511. gtk+-2.0.vapi:161.3-161.36: error: `Gtk.Stock' already contains a definition for `PRINT_PREVIEW'
  1512.         public const string PRINT_PREVIEW;
  1513.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1514. gtk+-3.0.vapi:161.3-161.36: note: previous definition of `PRINT_PREVIEW' was here
  1515.         public const string PRINT_PREVIEW;
  1516.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1517. gtk+-2.0.vapi:163.3-163.35: error: `Gtk.Stock' already contains a definition for `PRINT_REPORT'
  1518.         public const string PRINT_REPORT;
  1519.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1520. gtk+-3.0.vapi:163.3-163.35: note: previous definition of `PRINT_REPORT' was here
  1521.         public const string PRINT_REPORT;
  1522.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1523. gtk+-2.0.vapi:165.3-165.36: error: `Gtk.Stock' already contains a definition for `PRINT_WARNING'
  1524.         public const string PRINT_WARNING;
  1525.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1526. gtk+-3.0.vapi:165.3-165.36: note: previous definition of `PRINT_WARNING' was here
  1527.         public const string PRINT_WARNING;
  1528.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1529. gtk+-2.0.vapi:167.3-167.33: error: `Gtk.Stock' already contains a definition for `PROPERTIES'
  1530.         public const string PROPERTIES;
  1531.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1532. gtk+-3.0.vapi:167.3-167.33: note: previous definition of `PROPERTIES' was here
  1533.         public const string PROPERTIES;
  1534.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1535. gtk+-2.0.vapi:169.3-169.27: error: `Gtk.Stock' already contains a definition for `QUIT'
  1536.         public const string QUIT;
  1537.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1538. gtk+-3.0.vapi:169.3-169.27: note: previous definition of `QUIT' was here
  1539.         public const string QUIT;
  1540.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1541. gtk+-2.0.vapi:171.3-171.27: error: `Gtk.Stock' already contains a definition for `REDO'
  1542.         public const string REDO;
  1543.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1544. gtk+-3.0.vapi:171.3-171.27: note: previous definition of `REDO' was here
  1545.         public const string REDO;
  1546.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1547. gtk+-2.0.vapi:173.3-173.30: error: `Gtk.Stock' already contains a definition for `REFRESH'
  1548.         public const string REFRESH;
  1549.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1550. gtk+-3.0.vapi:173.3-173.30: note: previous definition of `REFRESH' was here
  1551.         public const string REFRESH;
  1552.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1553. gtk+-2.0.vapi:175.3-175.29: error: `Gtk.Stock' already contains a definition for `REMOVE'
  1554.         public const string REMOVE;
  1555.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1556. gtk+-3.0.vapi:175.3-175.29: note: previous definition of `REMOVE' was here
  1557.         public const string REMOVE;
  1558.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1559. gtk+-2.0.vapi:177.3-177.38: error: `Gtk.Stock' already contains a definition for `REVERT_TO_SAVED'
  1560.         public const string REVERT_TO_SAVED;
  1561.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1562. gtk+-3.0.vapi:177.3-177.38: note: previous definition of `REVERT_TO_SAVED' was here
  1563.         public const string REVERT_TO_SAVED;
  1564.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1565. gtk+-2.0.vapi:179.3-179.27: error: `Gtk.Stock' already contains a definition for `SAVE'
  1566.         public const string SAVE;
  1567.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1568. gtk+-3.0.vapi:179.3-179.27: note: previous definition of `SAVE' was here
  1569.         public const string SAVE;
  1570.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1571. gtk+-2.0.vapi:181.3-181.30: error: `Gtk.Stock' already contains a definition for `SAVE_AS'
  1572.         public const string SAVE_AS;
  1573.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1574. gtk+-3.0.vapi:181.3-181.30: note: previous definition of `SAVE_AS' was here
  1575.         public const string SAVE_AS;
  1576.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1577. gtk+-2.0.vapi:183.3-183.33: error: `Gtk.Stock' already contains a definition for `SELECT_ALL'
  1578.         public const string SELECT_ALL;
  1579.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1580. gtk+-3.0.vapi:183.3-183.33: note: previous definition of `SELECT_ALL' was here
  1581.         public const string SELECT_ALL;
  1582.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1583. gtk+-2.0.vapi:185.3-185.35: error: `Gtk.Stock' already contains a definition for `SELECT_COLOR'
  1584.         public const string SELECT_COLOR;
  1585.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1586. gtk+-3.0.vapi:185.3-185.35: note: previous definition of `SELECT_COLOR' was here
  1587.         public const string SELECT_COLOR;
  1588.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1589. gtk+-2.0.vapi:187.3-187.34: error: `Gtk.Stock' already contains a definition for `SELECT_FONT'
  1590.         public const string SELECT_FONT;
  1591.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1592. gtk+-3.0.vapi:187.3-187.34: note: previous definition of `SELECT_FONT' was here
  1593.         public const string SELECT_FONT;
  1594.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1595. gtk+-2.0.vapi:189.3-189.37: error: `Gtk.Stock' already contains a definition for `SORT_ASCENDING'
  1596.         public const string SORT_ASCENDING;
  1597.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1598. gtk+-3.0.vapi:189.3-189.37: note: previous definition of `SORT_ASCENDING' was here
  1599.         public const string SORT_ASCENDING;
  1600.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1601. gtk+-2.0.vapi:191.3-191.38: error: `Gtk.Stock' already contains a definition for `SORT_DESCENDING'
  1602.         public const string SORT_DESCENDING;
  1603.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1604. gtk+-3.0.vapi:191.3-191.38: note: previous definition of `SORT_DESCENDING' was here
  1605.         public const string SORT_DESCENDING;
  1606.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1607. gtk+-2.0.vapi:193.3-193.34: error: `Gtk.Stock' already contains a definition for `SPELL_CHECK'
  1608.         public const string SPELL_CHECK;
  1609.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1610. gtk+-3.0.vapi:193.3-193.34: note: previous definition of `SPELL_CHECK' was here
  1611.         public const string SPELL_CHECK;
  1612.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1613. gtk+-2.0.vapi:195.3-195.27: error: `Gtk.Stock' already contains a definition for `STOP'
  1614.         public const string STOP;
  1615.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1616. gtk+-3.0.vapi:195.3-195.27: note: previous definition of `STOP' was here
  1617.         public const string STOP;
  1618.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1619. gtk+-2.0.vapi:197.3-197.36: error: `Gtk.Stock' already contains a definition for `STRIKETHROUGH'
  1620.         public const string STRIKETHROUGH;
  1621.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1622. gtk+-3.0.vapi:197.3-197.36: note: previous definition of `STRIKETHROUGH' was here
  1623.         public const string STRIKETHROUGH;
  1624.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1625. gtk+-2.0.vapi:199.3-199.31: error: `Gtk.Stock' already contains a definition for `UNDELETE'
  1626.         public const string UNDELETE;
  1627.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1628. gtk+-3.0.vapi:199.3-199.31: note: previous definition of `UNDELETE' was here
  1629.         public const string UNDELETE;
  1630.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1631. gtk+-2.0.vapi:201.3-201.32: error: `Gtk.Stock' already contains a definition for `UNDERLINE'
  1632.         public const string UNDERLINE;
  1633.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1634. gtk+-3.0.vapi:201.3-201.32: note: previous definition of `UNDERLINE' was here
  1635.         public const string UNDERLINE;
  1636.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1637. gtk+-2.0.vapi:203.3-203.27: error: `Gtk.Stock' already contains a definition for `UNDO'
  1638.         public const string UNDO;
  1639.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1640. gtk+-3.0.vapi:203.3-203.27: note: previous definition of `UNDO' was here
  1641.         public const string UNDO;
  1642.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1643. gtk+-2.0.vapi:205.3-205.31: error: `Gtk.Stock' already contains a definition for `UNINDENT'
  1644.         public const string UNINDENT;
  1645.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1646. gtk+-3.0.vapi:205.3-205.31: note: previous definition of `UNINDENT' was here
  1647.         public const string UNINDENT;
  1648.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1649. gtk+-2.0.vapi:207.3-207.26: error: `Gtk.Stock' already contains a definition for `YES'
  1650.         public const string YES;
  1651.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1652. gtk+-3.0.vapi:207.3-207.26: note: previous definition of `YES' was here
  1653.         public const string YES;
  1654.         ^^^^^^^^^^^^^^^^^^^^^^^^
  1655. gtk+-2.0.vapi:209.3-209.31: error: `Gtk.Stock' already contains a definition for `ZOOM_100'
  1656.         public const string ZOOM_100;
  1657.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1658. gtk+-3.0.vapi:209.3-209.31: note: previous definition of `ZOOM_100' was here
  1659.         public const string ZOOM_100;
  1660.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1661. gtk+-2.0.vapi:211.3-211.31: error: `Gtk.Stock' already contains a definition for `ZOOM_FIT'
  1662.         public const string ZOOM_FIT;
  1663.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1664. gtk+-3.0.vapi:211.3-211.31: note: previous definition of `ZOOM_FIT' was here
  1665.         public const string ZOOM_FIT;
  1666.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1667. gtk+-2.0.vapi:213.3-213.30: error: `Gtk.Stock' already contains a definition for `ZOOM_IN'
  1668.         public const string ZOOM_IN;
  1669.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1670. gtk+-3.0.vapi:213.3-213.30: note: previous definition of `ZOOM_IN' was here
  1671.         public const string ZOOM_IN;
  1672.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1673. gtk+-2.0.vapi:215.3-215.31: error: `Gtk.Stock' already contains a definition for `ZOOM_OUT'
  1674.         public const string ZOOM_OUT;
  1675.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1676. gtk+-3.0.vapi:215.3-215.31: note: previous definition of `ZOOM_OUT' was here
  1677.         public const string ZOOM_OUT;
  1678.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1679. gtk+-2.0.vapi:217.3-217.24: error: `Gtk.Stock' already contains a definition for `add'
  1680.         public static void add (Gtk.StockItem[] items);
  1681.         ^^^^^^^^^^^^^^^^^^^^^^
  1682. gtk+-3.0.vapi:217.3-217.24: note: previous definition of `add' was here
  1683.         public static void add (Gtk.StockItem[] items);
  1684.         ^^^^^^^^^^^^^^^^^^^^^^
  1685. gtk+-2.0.vapi:219.3-219.31: error: `Gtk.Stock' already contains a definition for `add_static'
  1686.         public static void add_static (Gtk.StockItem[] items);
  1687.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1688. gtk+-3.0.vapi:219.3-219.31: note: previous definition of `add_static' was here
  1689.         public static void add_static (Gtk.StockItem[] items);
  1690.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1691. gtk+-2.0.vapi:221.3-221.43: error: `Gtk.Stock' already contains a definition for `list_ids'
  1692.         public static GLib.SList<string> list_ids ();
  1693.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1694. gtk+-3.0.vapi:221.3-221.43: note: previous definition of `list_ids' was here
  1695.         public static GLib.SList<string> list_ids ();
  1696.         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1697. gtk+-2.0.vapi:223.3-223.27: error: `Gtk.Stock' already contains a definition for `lookup'
  1698.         public static bool lookup (string stock_id, out Gtk.StockItem item);
  1699.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1700. gtk+-3.0.vapi:223.3-223.27: note: previous definition of `lookup' was here
  1701.         public static bool lookup (string stock_id, out Gtk.StockItem item);
  1702.         ^^^^^^^^^^^^^^^^^^^^^^^^^
  1703. gtk+-2.0.vapi:226.2-226.70: error: `Gtk' already contains a definition for `AboutDialog'
  1704.     public class AboutDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
  1705.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1706. gtk+-3.0.vapi:226.2-226.70: note: previous definition of `AboutDialog' was here
  1707.     public class AboutDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
  1708.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1709. gtk+-2.0.vapi:278.2-278.38: error: `Gtk' already contains a definition for `AccelGroup'
  1710.     public class AccelGroup : GLib.Object {
  1711.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1712. gtk+-3.0.vapi:281.2-281.38: note: previous definition of `AccelGroup' was here
  1713.     public class AccelGroup : GLib.Object {
  1714.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1715. gtk+-2.0.vapi:303.2-303.29: error: `Gtk' already contains a definition for `AccelGroupEntry'
  1716.     public class AccelGroupEntry {
  1717.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1718. gtk+-3.0.vapi:303.2-303.29: note: previous definition of `AccelGroupEntry' was here
  1719.     public class AccelGroupEntry {
  1720.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1721. gtk+-2.0.vapi:309.2-309.68: error: `Gtk' already contains a definition for `AccelLabel'
  1722.     public class AccelLabel : Gtk.Label, Atk.Implementor, Gtk.Buildable {
  1723.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1724. gtk+-3.0.vapi:309.2-309.68: note: previous definition of `AccelLabel' was here
  1725.     public class AccelLabel : Gtk.Label, Atk.Implementor, Gtk.Buildable {
  1726.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1727. gtk+-2.0.vapi:327.2-327.36: error: `Gtk' already contains a definition for `AccelMap'
  1728.     public class AccelMap : GLib.Object {
  1729.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1730. gtk+-3.0.vapi:322.2-322.36: note: previous definition of `AccelMap' was here
  1731.     public class AccelMap : GLib.Object {
  1732.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1733. gtk+-2.0.vapi:348.2-348.27: error: `Gtk' already contains a definition for `AccelMapClass'
  1734.     public class AccelMapClass {
  1735.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1736. gtk+-3.0.vapi:343.2-343.27: note: previous definition of `AccelMapClass' was here
  1737.     public class AccelMapClass {
  1738.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1739. gtk+-2.0.vapi:351.2-351.37: error: `Gtk' already contains a definition for `Accessible'
  1740.     public class Accessible : Atk.Object {
  1741.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1742. gtk+-3.0.vapi:346.2-346.37: note: previous definition of `Accessible' was here
  1743.     public class Accessible : Atk.Object {
  1744.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1745. gtk+-2.0.vapi:358.2-358.49: error: `Gtk' already contains a definition for `Action'
  1746.     public class Action : GLib.Object, Gtk.Buildable {
  1747.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1748. gtk+-3.0.vapi:359.2-359.49: note: previous definition of `Action' was here
  1749.     public class Action : GLib.Object, Gtk.Buildable {
  1750.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1751. gtk+-2.0.vapi:427.2-427.54: error: `Gtk' already contains a definition for `ActionGroup'
  1752.     public class ActionGroup : GLib.Object, Gtk.Buildable {
  1753.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1754. gtk+-3.0.vapi:428.2-428.54: note: previous definition of `ActionGroup' was here
  1755.     public class ActionGroup : GLib.Object, Gtk.Buildable {
  1756.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1757. gtk+-2.0.vapi:457.2-457.37: error: `Gtk' already contains a definition for `Adjustment'
  1758.     public class Adjustment : Gtk.Object {
  1759.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1760. gtk+-3.0.vapi:458.2-458.48: note: previous definition of `Adjustment' was here
  1761.     public class Adjustment : GLib.InitiallyUnowned {
  1762.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1763. gtk+-2.0.vapi:486.2-486.65: error: `Gtk' already contains a definition for `Alignment'
  1764.     public class Alignment : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  1765.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1766. gtk+-3.0.vapi:488.2-488.65: note: previous definition of `Alignment' was here
  1767.     public class Alignment : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  1768.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1769. gtk+-2.0.vapi:516.2-516.62: error: `Gtk' already contains a definition for `Arrow'
  1770.     public class Arrow : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
  1771.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1772. gtk+-3.0.vapi:602.2-602.62: note: previous definition of `Arrow' was here
  1773.     public class Arrow : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
  1774.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1775. gtk+-2.0.vapi:526.2-526.69: error: `Gtk' already contains a definition for `AspectFrame'
  1776.     public class AspectFrame : Gtk.Frame, Atk.Implementor, Gtk.Buildable {
  1777.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1778. gtk+-3.0.vapi:612.2-612.69: note: previous definition of `AspectFrame' was here
  1779.     public class AspectFrame : Gtk.Frame, Atk.Implementor, Gtk.Buildable {
  1780.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1781. gtk+-2.0.vapi:541.2-541.68: error: `Gtk' already contains a definition for `Assistant'
  1782.     public class Assistant : Gtk.Window, Atk.Implementor, Gtk.Buildable {
  1783.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1784. gtk+-3.0.vapi:626.2-626.68: note: previous definition of `Assistant' was here
  1785.     public class Assistant : Gtk.Window, Atk.Implementor, Gtk.Buildable {
  1786.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1787. gtk+-2.0.vapi:574.2-574.65: error: `Gtk' already contains a definition for `Bin'
  1788.     public class Bin : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  1789.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1790. gtk+-3.0.vapi:660.2-660.65: note: previous definition of `Bin' was here
  1791.     public class Bin : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  1792.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1793. gtk+-2.0.vapi:582.2-582.24: error: `Gtk' already contains a definition for `BindingArg'
  1794.     public class BindingArg {
  1795.     ^^^^^^^^^^^^^^^^^^^^^^^
  1796. gtk+-3.0.vapi:6339.2-6339.25: note: previous definition of `BindingArg' was here
  1797.     public struct BindingArg {
  1798.     ^^^^^^^^^^^^^^^^^^^^^^^^
  1799. gtk+-2.0.vapi:587.2-587.26: error: `Gtk' already contains a definition for `BindingEntry'
  1800.     public class BindingEntry {
  1801.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  1802. gtk+-3.0.vapi:667.2-667.26: note: previous definition of `BindingEntry' was here
  1803.     public class BindingEntry {
  1804.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  1805. gtk+-2.0.vapi:604.2-604.24: error: `Gtk' already contains a definition for `BindingSet'
  1806.     public class BindingSet {
  1807.     ^^^^^^^^^^^^^^^^^^^^^^^
  1808. gtk+-3.0.vapi:685.2-685.24: note: previous definition of `BindingSet' was here
  1809.     public class BindingSet {
  1810.     ^^^^^^^^^^^^^^^^^^^^^^^
  1811. gtk+-2.0.vapi:619.2-619.27: error: `Gtk' already contains a definition for `BindingSignal'
  1812.     public class BindingSignal {
  1813.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1814. gtk+-3.0.vapi:700.2-700.27: note: previous definition of `BindingSignal' was here
  1815.     public class BindingSignal {
  1816.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1817. gtk+-2.0.vapi:627.2-627.20: error: `Gtk' already contains a definition for `Border'
  1818.     public class Border {
  1819.     ^^^^^^^^^^^^^^^^^^^
  1820. gtk+-3.0.vapi:6349.2-6349.21: note: previous definition of `Border' was here
  1821.     public struct Border {
  1822.     ^^^^^^^^^^^^^^^^^^^^
  1823. gtk+-2.0.vapi:637.2-637.81: error: `Gtk' already contains a definition for `Box'
  1824.     public class Box : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  1825.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1826. gtk+-3.0.vapi:708.2-708.81: note: previous definition of `Box' was here
  1827.     public class Box : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  1828.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1829. gtk+-2.0.vapi:664.2-664.35: error: `Gtk' already contains a definition for `Builder'
  1830.     public class Builder : GLib.Object {
  1831.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1832. gtk+-3.0.vapi:724.2-724.35: note: previous definition of `Builder' was here
  1833.     public class Builder : GLib.Object {
  1834.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1835. gtk+-2.0.vapi:684.2-684.79: error: `Gtk' already contains a definition for `Button'
  1836.     public class Button : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  1837.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1838. gtk+-3.0.vapi:746.2-746.95: note: previous definition of `Button' was here
  1839.     public class Button : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable {
  1840.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1841. gtk+-2.0.vapi:741.2-741.81: error: `Gtk' already contains a definition for `ButtonBox'
  1842.     public class ButtonBox : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  1843.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1844. gtk+-3.0.vapi:796.2-796.81: note: previous definition of `ButtonBox' was here
  1845.     public class ButtonBox : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  1846.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1847. gtk+-2.0.vapi:756.2-756.67: error: `Gtk' already contains a definition for `Calendar'
  1848.     public class Calendar : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  1849.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1850. gtk+-3.0.vapi:809.2-809.67: note: previous definition of `Calendar' was here
  1851.     public class Calendar : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  1852.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1853. gtk+-2.0.vapi:818.2-818.48: error: `Gtk' already contains a definition for `CellRenderer'
  1854.     public abstract class CellRenderer : Gtk.Object {
  1855.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1856. gtk+-3.0.vapi:950.2-950.59: note: previous definition of `CellRenderer' was here
  1857.     public abstract class CellRenderer : GLib.InitiallyUnowned {
  1858.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1859. gtk+-2.0.vapi:869.2-869.54: error: `Gtk' already contains a definition for `CellRendererAccel'
  1860.     public class CellRendererAccel : Gtk.CellRendererText {
  1861.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1862. gtk+-3.0.vapi:1012.2-1012.54: note: previous definition of `CellRendererAccel' was here
  1863.     public class CellRendererAccel : Gtk.CellRendererText {
  1864.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1865. gtk+-2.0.vapi:887.2-887.54: error: `Gtk' already contains a definition for `CellRendererCombo'
  1866.     public class CellRendererCombo : Gtk.CellRendererText {
  1867.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1868. gtk+-3.0.vapi:1027.2-1027.54: note: previous definition of `CellRendererCombo' was here
  1869.     public class CellRendererCombo : Gtk.CellRendererText {
  1870.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1871. gtk+-2.0.vapi:900.2-900.51: error: `Gtk' already contains a definition for `CellRendererPixbuf'
  1872.     public class CellRendererPixbuf : Gtk.CellRenderer {
  1873.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1874. gtk+-3.0.vapi:1039.2-1039.51: note: previous definition of `CellRendererPixbuf' was here
  1875.     public class CellRendererPixbuf : Gtk.CellRenderer {
  1876.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1877. gtk+-2.0.vapi:923.2-923.53: error: `Gtk' already contains a definition for `CellRendererProgress'
  1878.     public class CellRendererProgress : Gtk.CellRenderer {
  1879.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1880. gtk+-3.0.vapi:1062.2-1062.69: note: previous definition of `CellRendererProgress' was here
  1881.     public class CellRendererProgress : Gtk.CellRenderer, Gtk.Orientable {
  1882.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1883. gtk+-2.0.vapi:940.2-940.53: error: `Gtk' already contains a definition for `CellRendererSpin'
  1884.     public class CellRendererSpin : Gtk.CellRendererText {
  1885.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1886. gtk+-3.0.vapi:1079.2-1079.53: note: previous definition of `CellRendererSpin' was here
  1887.     public class CellRendererSpin : Gtk.CellRendererText {
  1888.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1889. gtk+-2.0.vapi:951.2-951.52: error: `Gtk' already contains a definition for `CellRendererSpinner'
  1890.     public class CellRendererSpinner : Gtk.CellRenderer {
  1891.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1892. gtk+-3.0.vapi:1090.2-1090.52: note: previous definition of `CellRendererSpinner' was here
  1893.     public class CellRendererSpinner : Gtk.CellRenderer {
  1894.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1895. gtk+-2.0.vapi:962.2-962.49: error: `Gtk' already contains a definition for `CellRendererText'
  1896.     public class CellRendererText : Gtk.CellRenderer {
  1897.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1898. gtk+-3.0.vapi:1101.2-1101.49: note: previous definition of `CellRendererText' was here
  1899.     public class CellRendererText : Gtk.CellRenderer {
  1900.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1901. gtk+-2.0.vapi:1062.2-1062.51: error: `Gtk' already contains a definition for `CellRendererToggle'
  1902.     public class CellRendererToggle : Gtk.CellRenderer {
  1903.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1904. gtk+-3.0.vapi:1202.2-1202.51: note: previous definition of `CellRendererToggle' was here
  1905.     public class CellRendererToggle : Gtk.CellRenderer {
  1906.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1907. gtk+-2.0.vapi:1081.2-1081.83: error: `Gtk' already contains a definition for `CellView'
  1908.     public class CellView : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.CellLayout {
  1909.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1910. gtk+-3.0.vapi:1221.2-1221.99: note: previous definition of `CellView' was here
  1911.     public class CellView : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.CellLayout, Gtk.Orientable {
  1912.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1913. gtk+-2.0.vapi:1105.2-1105.93: error: `Gtk' already contains a definition for `CheckButton'
  1914.     public class CheckButton : Gtk.ToggleButton, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  1915.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1916. gtk+-3.0.vapi:1260.2-1260.109: note: previous definition of `CheckButton' was here
  1917.     public class CheckButton : Gtk.ToggleButton, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable {
  1918.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1919. gtk+-2.0.vapi:1116.2-1116.91: error: `Gtk' already contains a definition for `CheckMenuItem'
  1920.     public class CheckMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  1921.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1922. gtk+-3.0.vapi:1271.2-1271.91: note: previous definition of `CheckMenuItem' was here
  1923.     public class CheckMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  1924.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1925. gtk+-2.0.vapi:1139.2-1139.37: error: `Gtk' already contains a definition for `Clipboard'
  1926.     public class Clipboard : GLib.Object {
  1927.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1928. gtk+-3.0.vapi:1293.2-1293.37: note: previous definition of `Clipboard' was here
  1929.     public class Clipboard : GLib.Object {
  1930.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1931. gtk+-2.0.vapi:1175.2-1175.87: error: `Gtk' already contains a definition for `ColorButton'
  1932.     public class ColorButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  1933.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1934. gtk+-3.0.vapi:1329.2-1329.103: note: previous definition of `ColorButton' was here
  1935.     public class ColorButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable {
  1936.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1937. gtk+-2.0.vapi:1195.2-1195.87: error: `Gtk' already contains a definition for `ColorSelection'
  1938.     public class ColorSelection : Gtk.VBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  1939.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1940. gtk+-3.0.vapi:1354.2-1354.86: note: previous definition of `ColorSelection' was here
  1941.     public class ColorSelection : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  1942.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1943. gtk+-2.0.vapi:1221.2-1221.79: error: `Gtk' already contains a definition for `ColorSelectionDialog'
  1944.     public class ColorSelectionDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
  1945.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1946. gtk+-3.0.vapi:1385.2-1385.79: note: previous definition of `ColorSelectionDialog' was here
  1947.     public class ColorSelectionDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
  1948.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1949. gtk+-2.0.vapi:1235.2-1235.98: error: `Gtk' already contains a definition for `ComboBox'
  1950.     public class ComboBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.CellEditable, Gtk.CellLayout {
  1951.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1952. gtk+-3.0.vapi:1398.2-1398.98: note: previous definition of `ComboBox' was here
  1953.     public class ComboBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.CellLayout, Gtk.CellEditable {
  1954.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1955. gtk+-2.0.vapi:1304.2-1304.68: error: `Gtk' already contains a definition for `Container'
  1956.     public class Container : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  1957.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1958. gtk+-3.0.vapi:1490.2-1490.68: note: previous definition of `Container' was here
  1959.     public class Container : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  1960.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1961. gtk+-2.0.vapi:1395.2-1395.65: error: `Gtk' already contains a definition for `Dialog'
  1962.     public class Dialog : Gtk.Window, Atk.Implementor, Gtk.Buildable {
  1963.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1964. gtk+-3.0.vapi:1574.2-1574.65: note: previous definition of `Dialog' was here
  1965.     public class Dialog : Gtk.Window, Atk.Implementor, Gtk.Buildable {
  1966.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1967. gtk+-2.0.vapi:1424.2-1424.70: error: `Gtk' already contains a definition for `DrawingArea'
  1968.     public class DrawingArea : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  1969.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1970. gtk+-3.0.vapi:1598.2-1598.70: note: previous definition of `DrawingArea' was here
  1971.     public class DrawingArea : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  1972.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1973. gtk+-2.0.vapi:1430.2-1430.96: error: `Gtk' already contains a definition for `Entry'
  1974.     public class Entry : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.CellEditable, Gtk.Editable {
  1975.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1976. gtk+-3.0.vapi:1604.2-1604.96: note: previous definition of `Entry' was here
  1977.     public class Entry : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.Editable, Gtk.CellEditable {
  1978.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1979. gtk+-2.0.vapi:1610.2-1610.39: error: `Gtk' already contains a definition for `EntryBuffer'
  1980.     public class EntryBuffer : GLib.Object {
  1981.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1982. gtk+-3.0.vapi:1760.2-1760.39: note: previous definition of `EntryBuffer' was here
  1983.     public class EntryBuffer : GLib.Object {
  1984.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1985. gtk+-2.0.vapi:1630.2-1630.74: error: `Gtk' already contains a definition for `EntryCompletion'
  1986.     public class EntryCompletion : GLib.Object, Gtk.Buildable, Gtk.CellLayout {
  1987.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1988. gtk+-3.0.vapi:1780.2-1780.74: note: previous definition of `EntryCompletion' was here
  1989.     public class EntryCompletion : GLib.Object, Gtk.CellLayout, Gtk.Buildable {
  1990.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1991. gtk+-2.0.vapi:1671.2-1671.64: error: `Gtk' already contains a definition for `EventBox'
  1992.     public class EventBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  1993.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1994. gtk+-3.0.vapi:1826.2-1826.64: note: previous definition of `EventBox' was here
  1995.     public class EventBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  1996.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1997. gtk+-2.0.vapi:1682.2-1682.64: error: `Gtk' already contains a definition for `Expander'
  1998.     public class Expander : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  1999.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2000. gtk+-3.0.vapi:1837.2-1837.64: note: previous definition of `Expander' was here
  2001.     public class Expander : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2002.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2003. gtk+-2.0.vapi:1708.2-1708.107: error: `Gtk' already contains a definition for `FileChooserButton'
  2004.     public class FileChooserButton : Gtk.HBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.FileChooser {
  2005.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2006. gtk+-3.0.vapi:1869.2-1869.106: note: previous definition of `FileChooserButton' was here
  2007.     public class FileChooserButton : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.FileChooser {
  2008.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2009. gtk+-2.0.vapi:1726.2-1726.93: error: `Gtk' already contains a definition for `FileChooserDialog'
  2010.     public class FileChooserDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable, Gtk.FileChooser {
  2011.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2012. gtk+-3.0.vapi:1887.2-1887.93: note: previous definition of `FileChooserDialog' was here
  2013.     public class FileChooserDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable, Gtk.FileChooser {
  2014.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2015. gtk+-2.0.vapi:1731.2-1731.129: error: `Gtk' already contains a definition for `FileChooserWidget'
  2016.     public class FileChooserWidget : Gtk.VBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.FileChooser, Gtk.FileChooserEmbed {
  2017.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2018. gtk+-3.0.vapi:1892.2-1892.128: note: previous definition of `FileChooserWidget' was here
  2019.     public class FileChooserWidget : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.FileChooser, Gtk.FileChooserEmbed {
  2020.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2021. gtk+-2.0.vapi:1736.2-1736.37: error: `Gtk' already contains a definition for `FileFilter'
  2022.     public class FileFilter : Gtk.Object {
  2023.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2024. gtk+-3.0.vapi:1897.2-1897.63: note: previous definition of `FileFilter' was here
  2025.     public class FileFilter : GLib.InitiallyUnowned, Gtk.Buildable {
  2026.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2027. gtk+-2.0.vapi:1750.2-1750.28: error: `Gtk' already contains a definition for `FileFilterInfo'
  2028.     public class FileFilterInfo {
  2029.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2030. gtk+-3.0.vapi:1913.2-1913.28: note: previous definition of `FileFilterInfo' was here
  2031.     public class FileFilterInfo {
  2032.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2033. gtk+-2.0.vapi:1758.2-1758.67: error: `Gtk' already contains a definition for `Fixed'
  2034.     public class Fixed : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2035.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2036. gtk+-3.0.vapi:1921.2-1921.67: note: previous definition of `Fixed' was here
  2037.     public class Fixed : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2038.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2039. gtk+-2.0.vapi:1769.2-1769.24: error: `Gtk' already contains a definition for `FixedChild'
  2040.     public class FixedChild {
  2041.     ^^^^^^^^^^^^^^^^^^^^^^^
  2042. gtk+-3.0.vapi:1929.2-1929.24: note: previous definition of `FixedChild' was here
  2043.     public class FixedChild {
  2044.     ^^^^^^^^^^^^^^^^^^^^^^^
  2045. gtk+-2.0.vapi:1775.2-1775.86: error: `Gtk' already contains a definition for `FontButton'
  2046.     public class FontButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2047.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2048. gtk+-3.0.vapi:1935.2-1935.119: note: previous definition of `FontButton' was here
  2049.     public class FontButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable, Gtk.FontChooser {
  2050.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2051. gtk+-2.0.vapi:1801.2-1801.86: error: `Gtk' already contains a definition for `FontSelection'
  2052.     public class FontSelection : Gtk.VBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2053.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2054. gtk+-3.0.vapi:1971.2-1971.85: note: previous definition of `FontSelection' was here
  2055.     public class FontSelection : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2056.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2057. gtk+-2.0.vapi:1835.2-1835.78: error: `Gtk' already contains a definition for `FontSelectionDialog'
  2058.     public class FontSelectionDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
  2059.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2060. gtk+-3.0.vapi:1990.2-1990.78: note: previous definition of `FontSelectionDialog' was here
  2061.     public class FontSelectionDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
  2062.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2063. gtk+-2.0.vapi:1854.2-1854.61: error: `Gtk' already contains a definition for `Frame'
  2064.     public class Frame : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2065.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2066. gtk+-3.0.vapi:2002.2-2002.61: note: previous definition of `Frame' was here
  2067.     public class Frame : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2068.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2069. gtk+-2.0.vapi:1891.2-1891.76: error: `Gtk' already contains a definition for `HBox'
  2070.     public class HBox : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2071.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2072. gtk+-3.0.vapi:2059.2-2059.76: note: previous definition of `HBox' was here
  2073.     public class HBox : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2074.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2075. gtk+-2.0.vapi:1896.2-1896.88: error: `Gtk' already contains a definition for `HButtonBox'
  2076.     public class HButtonBox : Gtk.ButtonBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2077.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2078. gtk+-3.0.vapi:2064.2-2064.88: note: previous definition of `HButtonBox' was here
  2079.     public class HButtonBox : Gtk.ButtonBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2080.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2081. gtk+-2.0.vapi:1901.2-1901.80: error: `Gtk' already contains a definition for `HPaned'
  2082.     public class HPaned : Gtk.Paned, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2083.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2084. gtk+-3.0.vapi:2069.2-2069.80: note: previous definition of `HPaned' was here
  2085.     public class HPaned : Gtk.Paned, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2086.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2087. gtk+-2.0.vapi:1911.2-1911.62: error: `Gtk' already contains a definition for `HSV'
  2088.     public class HSV : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  2089.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2090. gtk+-3.0.vapi:2074.2-2074.62: note: previous definition of `HSV' was here
  2091.     public class HSV : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  2092.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2093. gtk+-2.0.vapi:1924.2-1924.80: error: `Gtk' already contains a definition for `HScale'
  2094.     public class HScale : Gtk.Scale, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2095.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2096. gtk+-3.0.vapi:2087.2-2087.80: note: previous definition of `HScale' was here
  2097.     public class HScale : Gtk.Scale, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2098.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2099. gtk+-2.0.vapi:1931.2-1931.88: error: `Gtk' already contains a definition for `HScrollbar'
  2100.     public class HScrollbar : Gtk.Scrollbar, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2101.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2102. gtk+-3.0.vapi:2094.2-2094.88: note: previous definition of `HScrollbar' was here
  2103.     public class HScrollbar : Gtk.Scrollbar, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2104.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2105. gtk+-2.0.vapi:1936.2-1936.88: error: `Gtk' already contains a definition for `HSeparator'
  2106.     public class HSeparator : Gtk.Separator, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2107.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2108. gtk+-3.0.vapi:2099.2-2099.88: note: previous definition of `HSeparator' was here
  2109.     public class HSeparator : Gtk.Separator, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2110.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2111. gtk+-2.0.vapi:1941.2-1941.65: error: `Gtk' already contains a definition for `HandleBox'
  2112.     public class HandleBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2113.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2114. gtk+-3.0.vapi:2104.2-2104.65: note: previous definition of `HandleBox' was here
  2115.     public class HandleBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2116.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2117. gtk+-2.0.vapi:1971.2-1971.37: error: `Gtk' already contains a definition for `IMContext'
  2118.     public class IMContext : GLib.Object {
  2119.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2120. gtk+-3.0.vapi:2123.2-2123.37: note: previous definition of `IMContext' was here
  2121.     public class IMContext : GLib.Object {
  2122.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2123. gtk+-2.0.vapi:1993.2-1993.45: error: `Gtk' already contains a definition for `IMContextSimple'
  2124.     public class IMContextSimple : Gtk.IMContext {
  2125.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2126. gtk+-3.0.vapi:2145.2-2145.45: note: previous definition of `IMContextSimple' was here
  2127.     public class IMContextSimple : Gtk.IMContext {
  2128.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2129. gtk+-2.0.vapi:2006.2-2006.44: error: `Gtk' already contains a definition for `IMMulticontext'
  2130.     public class IMMulticontext : Gtk.IMContext {
  2131.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2132. gtk+-3.0.vapi:2151.2-2151.44: note: previous definition of `IMMulticontext' was here
  2133.     public class IMMulticontext : Gtk.IMContext {
  2134.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2135. gtk+-2.0.vapi:2016.2-2016.54: error: `Gtk' already contains a definition for `IconFactory'
  2136.     public class IconFactory : GLib.Object, Gtk.Buildable {
  2137.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2138. gtk+-3.0.vapi:2159.2-2159.54: note: previous definition of `IconFactory' was here
  2139.     public class IconFactory : GLib.Object, Gtk.Buildable {
  2140.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2141. gtk+-2.0.vapi:2028.2-2028.22: error: `Gtk' already contains a definition for `IconInfo'
  2142.     public class IconInfo {
  2143.     ^^^^^^^^^^^^^^^^^^^^^
  2144. gtk+-3.0.vapi:2170.2-2170.22: note: previous definition of `IconInfo' was here
  2145.     public class IconInfo {
  2146.     ^^^^^^^^^^^^^^^^^^^^^
  2147. gtk+-2.0.vapi:2043.2-2043.21: error: `Gtk' already contains a definition for `IconSet'
  2148.     public class IconSet {
  2149.     ^^^^^^^^^^^^^^^^^^^^
  2150. gtk+-3.0.vapi:2188.2-2188.21: note: previous definition of `IconSet' was here
  2151.     public class IconSet {
  2152.     ^^^^^^^^^^^^^^^^^^^^
  2153. gtk+-2.0.vapi:2055.2-2055.24: error: `Gtk' already contains a definition for `IconSource'
  2154.     public class IconSource {
  2155.     ^^^^^^^^^^^^^^^^^^^^^^^
  2156. gtk+-3.0.vapi:2201.2-2201.24: note: previous definition of `IconSource' was here
  2157.     public class IconSource {
  2158.     ^^^^^^^^^^^^^^^^^^^^^^^
  2159. gtk+-2.0.vapi:2079.2-2079.37: error: `Gtk' already contains a definition for `IconTheme'
  2160.     public class IconTheme : GLib.Object {
  2161.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2162. gtk+-3.0.vapi:2225.2-2225.37: note: previous definition of `IconTheme' was here
  2163.     public class IconTheme : GLib.Object {
  2164.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2165. gtk+-2.0.vapi:2105.2-2105.86: error: `Gtk' already contains a definition for `IconView'
  2166.     public class IconView : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.CellLayout {
  2167.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2168. gtk+-3.0.vapi:2251.2-2251.102: note: previous definition of `IconView' was here
  2169.     public class IconView : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.CellLayout, Gtk.Scrollable {
  2170.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2171. gtk+-2.0.vapi:2190.2-2190.62: error: `Gtk' already contains a definition for `Image'
  2172.     public class Image : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
  2173.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2174. gtk+-3.0.vapi:2341.2-2341.62: note: previous definition of `Image' was here
  2175.     public class Image : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
  2176.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2177. gtk+-2.0.vapi:2289.2-2289.91: error: `Gtk' already contains a definition for `ImageMenuItem'
  2178.     public class ImageMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2179.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2180. gtk+-3.0.vapi:2400.2-2400.91: note: previous definition of `ImageMenuItem' was here
  2181.     public class ImageMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2182.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2183. gtk+-2.0.vapi:2326.2-2326.80: error: `Gtk' already contains a definition for `InfoBar'
  2184.     public class InfoBar : Gtk.HBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2185.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2186. gtk+-3.0.vapi:2422.2-2422.79: note: previous definition of `InfoBar' was here
  2187.     public class InfoBar : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2188.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2189. gtk+-2.0.vapi:2363.2-2363.68: error: `Gtk' already contains a definition for `Invisible'
  2190.     public class Invisible : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  2191.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2192. gtk+-3.0.vapi:2442.2-2442.68: note: previous definition of `Invisible' was here
  2193.     public class Invisible : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  2194.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2195. gtk+-2.0.vapi:2385.2-2385.62: error: `Gtk' already contains a definition for `Label'
  2196.     public class Label : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
  2197.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2198. gtk+-3.0.vapi:2452.2-2452.62: note: previous definition of `Label' was here
  2199.     public class Label : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
  2200.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2201. gtk+-2.0.vapi:2473.2-2473.32: error: `Gtk' already contains a definition for `LabelSelectionInfo'
  2202.     public class LabelSelectionInfo {
  2203.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2204. gtk+-3.0.vapi:2530.2-2530.32: note: previous definition of `LabelSelectionInfo' was here
  2205.     public class LabelSelectionInfo {
  2206.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2207. gtk+-2.0.vapi:2476.2-2476.68: error: `Gtk' already contains a definition for `Layout'
  2208.     public class Layout : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2209.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2210. gtk+-3.0.vapi:2533.2-2533.84: note: previous definition of `Layout' was here
  2211.     public class Layout : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Scrollable {
  2212.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2213. gtk+-2.0.vapi:2503.2-2503.86: error: `Gtk' already contains a definition for `LinkButton'
  2214.     public class LinkButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2215.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2216. gtk+-3.0.vapi:2551.2-2551.102: note: previous definition of `LinkButton' was here
  2217.     public class LinkButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable {
  2218.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2219. gtk+-2.0.vapi:2517.2-2517.123: error: `Gtk' already contains a definition for `ListStore'
  2220.     public class ListStore : GLib.Object, Gtk.Buildable, Gtk.TreeModel, Gtk.TreeSortable, Gtk.TreeDragSource, Gtk.TreeDragDest {
  2221.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2222. gtk+-3.0.vapi:2565.2-2565.123: note: previous definition of `ListStore' was here
  2223.     public class ListStore : GLib.Object, Gtk.TreeModel, Gtk.TreeDragSource, Gtk.TreeDragDest, Gtk.TreeSortable, Gtk.Buildable {
  2224.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2225. gtk+-2.0.vapi:2558.2-2558.66: error: `Gtk' already contains a definition for `Menu'
  2226.     public class Menu : Gtk.MenuShell, Atk.Implementor, Gtk.Buildable {
  2227.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2228. gtk+-3.0.vapi:2627.2-2627.66: note: previous definition of `Menu' was here
  2229.     public class Menu : Gtk.MenuShell, Atk.Implementor, Gtk.Buildable {
  2230.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2231. gtk+-2.0.vapi:2624.2-2624.69: error: `Gtk' already contains a definition for `MenuBar'
  2232.     public class MenuBar : Gtk.MenuShell, Atk.Implementor, Gtk.Buildable {
  2233.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2234. gtk+-3.0.vapi:2670.2-2670.69: note: previous definition of `MenuBar' was here
  2235.     public class MenuBar : Gtk.MenuShell, Atk.Implementor, Gtk.Buildable {
  2236.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2237. gtk+-2.0.vapi:2635.2-2635.82: error: `Gtk' already contains a definition for `MenuItem'
  2238.     public class MenuItem : Gtk.Item, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2239.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2240. gtk+-3.0.vapi:2683.2-2683.81: note: previous definition of `MenuItem' was here
  2241.     public class MenuItem : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2242.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2243. gtk+-2.0.vapi:2676.2-2676.71: error: `Gtk' already contains a definition for `MenuShell'
  2244.     public class MenuShell : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2245.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2246. gtk+-3.0.vapi:2718.2-2718.71: note: previous definition of `MenuShell' was here
  2247.     public class MenuShell : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2248.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2249. gtk+-2.0.vapi:2714.2-2714.94: error: `Gtk' already contains a definition for `MenuToolButton'
  2250.     public class MenuToolButton : Gtk.ToolButton, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2251.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2252. gtk+-3.0.vapi:2747.2-2747.110: note: previous definition of `MenuToolButton' was here
  2253.     public class MenuToolButton : Gtk.ToolButton, Atk.Implementor, Gtk.Buildable, Gtk.Activatable, Gtk.Actionable {
  2254.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2255. gtk+-2.0.vapi:2727.2-2727.72: error: `Gtk' already contains a definition for `MessageDialog'
  2256.     public class MessageDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
  2257.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2258. gtk+-3.0.vapi:2760.2-2760.72: note: previous definition of `MessageDialog' was here
  2259.     public class MessageDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
  2260.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2261. gtk+-2.0.vapi:2757.2-2757.63: error: `Gtk' already contains a definition for `Misc'
  2262.     public class Misc : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  2263.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2264. gtk+-3.0.vapi:2791.2-2791.63: note: previous definition of `Misc' was here
  2265.     public class Misc : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  2266.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2267. gtk+-2.0.vapi:2774.2-2774.50: error: `Gtk' already contains a definition for `MountOperation'
  2268.     public class MountOperation : GLib.MountOperation {
  2269.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2270. gtk+-3.0.vapi:2808.2-2808.50: note: previous definition of `MountOperation' was here
  2271.     public class MountOperation : GLib.MountOperation {
  2272.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2273. gtk+-2.0.vapi:2787.2-2787.70: error: `Gtk' already contains a definition for `Notebook'
  2274.     public class Notebook : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2275.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2276. gtk+-3.0.vapi:2821.2-2821.70: note: previous definition of `Notebook' was here
  2277.     public class Notebook : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2278.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2279. gtk+-2.0.vapi:2901.2-2901.74: error: `Gtk' already contains a definition for `OffscreenWindow'
  2280.     public class OffscreenWindow : Gtk.Window, Atk.Implementor, Gtk.Buildable {
  2281.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2282. gtk+-3.0.vapi:2912.2-2912.74: note: previous definition of `OffscreenWindow' was here
  2283.     public class OffscreenWindow : Gtk.Window, Atk.Implementor, Gtk.Buildable {
  2284.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2285. gtk+-2.0.vapi:2909.2-2909.23: error: `Gtk' already contains a definition for `PageRange'
  2286.     public class PageRange {
  2287.     ^^^^^^^^^^^^^^^^^^^^^^
  2288. gtk+-3.0.vapi:2927.2-2927.23: note: previous definition of `PageRange' was here
  2289.     public class PageRange {
  2290.     ^^^^^^^^^^^^^^^^^^^^^^
  2291. gtk+-2.0.vapi:2914.2-2914.37: error: `Gtk' already contains a definition for `PageSetup'
  2292.     public class PageSetup : GLib.Object {
  2293.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2294. gtk+-3.0.vapi:2932.2-2932.37: note: previous definition of `PageSetup' was here
  2295.     public class PageSetup : GLib.Object {
  2296.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2297. gtk+-2.0.vapi:2945.2-2945.83: error: `Gtk' already contains a definition for `Paned'
  2298.     public class Paned : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2299.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2300. gtk+-3.0.vapi:2963.2-2963.83: note: previous definition of `Paned' was here
  2301.     public class Paned : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2302.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2303. gtk+-2.0.vapi:2993.2-2993.23: error: `Gtk' already contains a definition for `PaperSize'
  2304.     public class PaperSize {
  2305.     ^^^^^^^^^^^^^^^^^^^^^^
  2306. gtk+-3.0.vapi:2991.2-2991.23: note: previous definition of `PaperSize' was here
  2307.     public class PaperSize {
  2308.     ^^^^^^^^^^^^^^^^^^^^^^
  2309. gtk+-2.0.vapi:3020.2-3020.63: error: `Gtk' already contains a definition for `Plug'
  2310.     public class Plug : Gtk.Window, Atk.Implementor, Gtk.Buildable {
  2311.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2312. gtk+-3.0.vapi:3018.2-3018.63: note: previous definition of `Plug' was here
  2313.     public class Plug : Gtk.Window, Atk.Implementor, Gtk.Buildable {
  2314.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2315. gtk+-2.0.vapi:3038.2-3038.40: error: `Gtk' already contains a definition for `PrintContext'
  2316.     public class PrintContext : GLib.Object {
  2317.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2318. gtk+-3.0.vapi:3032.2-3032.40: note: previous definition of `PrintContext' was here
  2319.     public class PrintContext : GLib.Object {
  2320.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2321. gtk+-2.0.vapi:3054.2-3054.69: error: `Gtk' already contains a definition for `PrintOperation'
  2322.     public class PrintOperation : GLib.Object, Gtk.PrintOperationPreview {
  2323.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2324. gtk+-3.0.vapi:3048.2-3048.69: note: previous definition of `PrintOperation' was here
  2325.     public class PrintOperation : GLib.Object, Gtk.PrintOperationPreview {
  2326.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2327. gtk+-2.0.vapi:3127.2-3127.41: error: `Gtk' already contains a definition for `PrintSettings'
  2328.     public class PrintSettings : GLib.Object {
  2329.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2330. gtk+-3.0.vapi:3121.2-3121.41: note: previous definition of `PrintSettings' was here
  2331.     public class PrintSettings : GLib.Object {
  2332.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2333. gtk+-2.0.vapi:3207.2-3207.70: error: `Gtk' already contains a definition for `ProgressBar'
  2334.     public class ProgressBar : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  2335.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2336. gtk+-3.0.vapi:3201.2-3201.86: note: previous definition of `ProgressBar' was here
  2337.     public class ProgressBar : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2338.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2339. gtk+-2.0.vapi:3244.2-3244.59: error: `Gtk' already contains a definition for `RadioAction'
  2340.     public class RadioAction : Gtk.ToggleAction, Gtk.Buildable {
  2341.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2342. gtk+-3.0.vapi:3225.2-3225.59: note: previous definition of `RadioAction' was here
  2343.     public class RadioAction : Gtk.ToggleAction, Gtk.Buildable {
  2344.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2345. gtk+-2.0.vapi:3259.2-3259.92: error: `Gtk' already contains a definition for `RadioButton'
  2346.     public class RadioButton : Gtk.CheckButton, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2347.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2348. gtk+-3.0.vapi:3241.2-3241.108: note: previous definition of `RadioButton' was here
  2349.     public class RadioButton : Gtk.CheckButton, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable {
  2350.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2351. gtk+-2.0.vapi:3279.2-3279.96: error: `Gtk' already contains a definition for `RadioMenuItem'
  2352.     public class RadioMenuItem : Gtk.CheckMenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2353.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2354. gtk+-3.0.vapi:3262.2-3262.96: note: previous definition of `RadioMenuItem' was here
  2355.     public class RadioMenuItem : Gtk.CheckMenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2356.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2357. gtk+-2.0.vapi:3298.2-3298.101: error: `Gtk' already contains a definition for `RadioToolButton'
  2358.     public class RadioToolButton : Gtk.ToggleToolButton, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2359.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2360. gtk+-3.0.vapi:3281.2-3281.117: note: previous definition of `RadioToolButton' was here
  2361.     public class RadioToolButton : Gtk.ToggleToolButton, Atk.Implementor, Gtk.Buildable, Gtk.Activatable, Gtk.Actionable {
  2362.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2363. gtk+-2.0.vapi:3312.2-3312.80: error: `Gtk' already contains a definition for `Range'
  2364.     public class Range : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2365.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2366. gtk+-3.0.vapi:3295.2-3295.80: note: previous definition of `Range' was here
  2367.     public class Range : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2368.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2369. gtk+-2.0.vapi:3389.2-3389.23: error: `Gtk' already contains a definition for `RcContext'
  2370.     public class RcContext {
  2371.     ^^^^^^^^^^^^^^^^^^^^^^
  2372. gtk+-3.0.vapi:3343.2-3343.23: note: previous definition of `RcContext' was here
  2373.     public class RcContext {
  2374.     ^^^^^^^^^^^^^^^^^^^^^^
  2375. gtk+-2.0.vapi:3393.2-3393.24: error: `Gtk' already contains a definition for `RcProperty'
  2376.     public class RcProperty {
  2377.     ^^^^^^^^^^^^^^^^^^^^^^^
  2378. gtk+-3.0.vapi:3347.2-3347.24: note: previous definition of `RcProperty' was here
  2379.     public class RcProperty {
  2380.     ^^^^^^^^^^^^^^^^^^^^^^^
  2381. gtk+-2.0.vapi:3405.2-3405.35: error: `Gtk' already contains a definition for `RcStyle'
  2382.     public class RcStyle : GLib.Object {
  2383.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2384. gtk+-3.0.vapi:3359.2-3359.35: note: previous definition of `RcStyle' was here
  2385.     public class RcStyle : GLib.Object {
  2386.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2387. gtk+-2.0.vapi:3439.2-3439.73: error: `Gtk' already contains a definition for `RecentAction'
  2388.     public class RecentAction : Gtk.Action, Gtk.Buildable, Gtk.RecentChooser {
  2389.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2390. gtk+-3.0.vapi:3393.2-3393.73: note: previous definition of `RecentAction' was here
  2391.     public class RecentAction : Gtk.Action, Gtk.Buildable, Gtk.RecentChooser {
  2392.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2393. gtk+-2.0.vapi:3449.2-3449.97: error: `Gtk' already contains a definition for `RecentChooserDialog'
  2394.     public class RecentChooserDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable, Gtk.RecentChooser {
  2395.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2396. gtk+-3.0.vapi:3403.2-3403.97: note: previous definition of `RecentChooserDialog' was here
  2397.     public class RecentChooserDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable, Gtk.RecentChooser {
  2398.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2399. gtk+-2.0.vapi:3456.2-3456.110: error: `Gtk' already contains a definition for `RecentChooserMenu'
  2400.     public class RecentChooserMenu : Gtk.Menu, Atk.Implementor, Gtk.Buildable, Gtk.Activatable, Gtk.RecentChooser {
  2401.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2402. gtk+-3.0.vapi:3410.2-3410.110: note: previous definition of `RecentChooserMenu' was here
  2403.     public class RecentChooserMenu : Gtk.Menu, Atk.Implementor, Gtk.Buildable, Gtk.RecentChooser, Gtk.Activatable {
  2404.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2405. gtk+-2.0.vapi:3474.2-3474.111: error: `Gtk' already contains a definition for `RecentChooserWidget'
  2406.     public class RecentChooserWidget : Gtk.VBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.RecentChooser {
  2407.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2408. gtk+-3.0.vapi:3428.2-3428.110: note: previous definition of `RecentChooserWidget' was here
  2409.     public class RecentChooserWidget : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.RecentChooser {
  2410.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2411. gtk+-2.0.vapi:3481.2-3481.39: error: `Gtk' already contains a definition for `RecentFilter'
  2412.     public class RecentFilter : Gtk.Object {
  2413.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2414. gtk+-3.0.vapi:3435.2-3435.65: note: previous definition of `RecentFilter' was here
  2415.     public class RecentFilter : GLib.InitiallyUnowned, Gtk.Buildable {
  2416.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2417. gtk+-2.0.vapi:3498.2-3498.30: error: `Gtk' already contains a definition for `RecentFilterInfo'
  2418.     public class RecentFilterInfo {
  2419.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2420. gtk+-3.0.vapi:3450.2-3450.30: note: previous definition of `RecentFilterInfo' was here
  2421.     public class RecentFilterInfo {
  2422.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2423. gtk+-2.0.vapi:3509.2-3509.24: error: `Gtk' already contains a definition for `RecentInfo'
  2424.     public class RecentInfo {
  2425.     ^^^^^^^^^^^^^^^^^^^^^^^
  2426. gtk+-3.0.vapi:3461.2-3461.24: note: previous definition of `RecentInfo' was here
  2427.     public class RecentInfo {
  2428.     ^^^^^^^^^^^^^^^^^^^^^^^
  2429. gtk+-2.0.vapi:3535.2-3535.41: error: `Gtk' already contains a definition for `RecentManager'
  2430.     public class RecentManager : GLib.Object {
  2431.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2432. gtk+-3.0.vapi:3489.2-3489.41: note: previous definition of `RecentManager' was here
  2433.     public class RecentManager : GLib.Object {
  2434.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2435. gtk+-2.0.vapi:3594.2-3594.79: error: `Gtk' already contains a definition for `Scale'
  2436.     public class Scale : Gtk.Range, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2437.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2438. gtk+-3.0.vapi:3516.2-3516.79: note: previous definition of `Scale' was here
  2439.     public class Scale : Gtk.Range, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2440.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2441. gtk+-2.0.vapi:3613.2-3613.103: error: `Gtk' already contains a definition for `ScaleButton'
  2442.     public class ScaleButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.Activatable {
  2443.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2444. gtk+-3.0.vapi:3540.2-3540.119: note: previous definition of `ScaleButton' was here
  2445.     public class ScaleButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable, Gtk.Orientable {
  2446.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2447. gtk+-2.0.vapi:3638.2-3638.83: error: `Gtk' already contains a definition for `Scrollbar'
  2448.     public class Scrollbar : Gtk.Range, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2449.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2450. gtk+-3.0.vapi:3563.2-3563.83: note: previous definition of `Scrollbar' was here
  2451.     public class Scrollbar : Gtk.Range, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2452.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2453. gtk+-2.0.vapi:3643.2-3643.70: error: `Gtk' already contains a definition for `ScrolledWindow'
  2454.     public class ScrolledWindow : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2455.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2456. gtk+-3.0.vapi:3568.2-3568.70: note: previous definition of `ScrolledWindow' was here
  2457.     public class ScrolledWindow : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2458.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2459. gtk+-2.0.vapi:3681.2-3681.27: error: `Gtk' already contains a definition for `SelectionData'
  2460.     public class SelectionData {
  2461.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  2462. gtk+-3.0.vapi:3607.2-3607.27: note: previous definition of `SelectionData' was here
  2463.     public class SelectionData {
  2464.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  2465. gtk+-2.0.vapi:3714.2-3714.84: error: `Gtk' already contains a definition for `Separator'
  2466.     public class Separator : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2467.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2468. gtk+-3.0.vapi:3633.2-3633.84: note: previous definition of `Separator' was here
  2469.     public class Separator : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2470.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2471. gtk+-2.0.vapi:3719.2-3719.95: error: `Gtk' already contains a definition for `SeparatorMenuItem'
  2472.     public class SeparatorMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2473.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2474. gtk+-3.0.vapi:3638.2-3638.95: note: previous definition of `SeparatorMenuItem' was here
  2475.     public class SeparatorMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2476.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2477. gtk+-2.0.vapi:3724.2-3724.95: error: `Gtk' already contains a definition for `SeparatorToolItem'
  2478.     public class SeparatorToolItem : Gtk.ToolItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2479.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2480. gtk+-3.0.vapi:3643.2-3643.95: note: previous definition of `SeparatorToolItem' was here
  2481.     public class SeparatorToolItem : Gtk.ToolItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2482.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2483. gtk+-2.0.vapi:3732.2-3732.36: error: `Gtk' already contains a definition for `Settings'
  2484.     public class Settings : GLib.Object {
  2485.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2486. gtk+-3.0.vapi:3651.2-3651.55: note: previous definition of `Settings' was here
  2487.     public class Settings : GLib.Object, Gtk.StyleProvider {
  2488.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2489. gtk+-2.0.vapi:3863.2-3863.27: error: `Gtk' already contains a definition for `SettingsValue'
  2490.     public class SettingsValue {
  2491.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  2492. gtk+-3.0.vapi:3809.2-3809.27: note: previous definition of `SettingsValue' was here
  2493.     public class SettingsValue {
  2494.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  2495. gtk+-2.0.vapi:3868.2-3868.52: error: `Gtk' already contains a definition for `SizeGroup'
  2496.     public class SizeGroup : GLib.Object, Gtk.Buildable {
  2497.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2498. gtk+-3.0.vapi:3814.2-3814.52: note: previous definition of `SizeGroup' was here
  2499.     public class SizeGroup : GLib.Object, Gtk.Buildable {
  2500.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2501. gtk+-2.0.vapi:3886.2-3886.68: error: `Gtk' already contains a definition for `Socket'
  2502.     public class Socket : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2503.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2504. gtk+-3.0.vapi:3828.2-3828.68: note: previous definition of `Socket' was here
  2505.     public class Socket : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2506.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2507. gtk+-2.0.vapi:3911.2-3911.100: error: `Gtk' already contains a definition for `SpinButton'
  2508.     public class SpinButton : Gtk.Entry, Atk.Implementor, Gtk.Buildable, Gtk.CellEditable, Gtk.Editable {
  2509.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2510. gtk+-3.0.vapi:3838.2-3838.100: note: previous definition of `SpinButton' was here
  2511.     public class SpinButton : Gtk.Entry, Atk.Implementor, Gtk.Buildable, Gtk.Editable, Gtk.CellEditable {
  2512.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2513. gtk+-2.0.vapi:3962.2-3962.71: error: `Gtk' already contains a definition for `Spinner'
  2514.     public class Spinner : Gtk.DrawingArea, Atk.Implementor, Gtk.Buildable {
  2515.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2516. gtk+-3.0.vapi:3881.2-3881.66: note: previous definition of `Spinner' was here
  2517.     public class Spinner : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
  2518.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2519. gtk+-2.0.vapi:3971.2-3971.38: error: `Gtk' already contains a definition for `StatusIcon'
  2520.     public class StatusIcon : GLib.Object {
  2521.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2522. gtk+-3.0.vapi:3890.2-3890.38: note: previous definition of `StatusIcon' was here
  2523.     public class StatusIcon : GLib.Object {
  2524.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2525. gtk+-2.0.vapi:4047.2-4047.82: error: `Gtk' already contains a definition for `Statusbar'
  2526.     public class Statusbar : Gtk.HBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2527.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2528. gtk+-3.0.vapi:3963.2-3963.81: note: previous definition of `Statusbar' was here
  2529.     public class Statusbar : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2530.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2531. gtk+-2.0.vapi:4069.2-4069.33: error: `Gtk' already contains a definition for `Style'
  2532.     public class Style : GLib.Object {
  2533.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2534. gtk+-3.0.vapi:3976.2-3976.33: note: previous definition of `Style' was here
  2535.     public class Style : GLib.Object {
  2536.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2537. gtk+-2.0.vapi:4186.2-4186.67: error: `Gtk' already contains a definition for `Table'
  2538.     public class Table : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2539.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2540. gtk+-3.0.vapi:4210.2-4210.67: note: previous definition of `Table' was here
  2541.     public class Table : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2542.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2543. gtk+-2.0.vapi:4219.2-4219.24: error: `Gtk' already contains a definition for `TableChild'
  2544.     public class TableChild {
  2545.     ^^^^^^^^^^^^^^^^^^^^^^^
  2546. gtk+-3.0.vapi:4239.2-4239.24: note: previous definition of `TableChild' was here
  2547.     public class TableChild {
  2548.     ^^^^^^^^^^^^^^^^^^^^^^^
  2549. gtk+-2.0.vapi:4236.2-4236.25: error: `Gtk' already contains a definition for `TableRowCol'
  2550.     public class TableRowCol {
  2551.     ^^^^^^^^^^^^^^^^^^^^^^^^
  2552. gtk+-3.0.vapi:4256.2-4256.25: note: previous definition of `TableRowCol' was here
  2553.     public class TableRowCol {
  2554.     ^^^^^^^^^^^^^^^^^^^^^^^^
  2555. gtk+-2.0.vapi:4248.2-4248.24: error: `Gtk' already contains a definition for `TargetList'
  2556.     public class TargetList {
  2557.     ^^^^^^^^^^^^^^^^^^^^^^^
  2558. gtk+-3.0.vapi:4268.2-4268.24: note: previous definition of `TargetList' was here
  2559.     public class TargetList {
  2560.     ^^^^^^^^^^^^^^^^^^^^^^^
  2561. gtk+-2.0.vapi:4270.2-4270.93: error: `Gtk' already contains a definition for `TearoffMenuItem'
  2562.     public class TearoffMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2563.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2564. gtk+-3.0.vapi:4281.2-4281.93: note: previous definition of `TearoffMenuItem' was here
  2565.     public class TearoffMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2566.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2567. gtk+-2.0.vapi:4277.2-4277.28: error: `Gtk' already contains a definition for `TextAppearance'
  2568.     public class TextAppearance {
  2569.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2570. gtk+-3.0.vapi:4287.2-4287.28: note: previous definition of `TextAppearance' was here
  2571.     public class TextAppearance {
  2572.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2573. gtk+-2.0.vapi:4296.2-4296.28: error: `Gtk' already contains a definition for `TextAttributes'
  2574.     public class TextAttributes {
  2575.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2576. gtk+-3.0.vapi:4301.2-4301.28: note: previous definition of `TextAttributes' was here
  2577.     public class TextAttributes {
  2578.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2579. gtk+-2.0.vapi:4328.2-4328.23: error: `Gtk' already contains a definition for `TextBTree'
  2580.     public class TextBTree {
  2581.     ^^^^^^^^^^^^^^^^^^^^^^
  2582. gtk+-3.0.vapi:4331.2-4331.23: note: previous definition of `TextBTree' was here
  2583.     public class TextBTree {
  2584.     ^^^^^^^^^^^^^^^^^^^^^^
  2585. gtk+-2.0.vapi:4331.2-4331.38: error: `Gtk' already contains a definition for `TextBuffer'
  2586.     public class TextBuffer : GLib.Object {
  2587.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2588. gtk+-3.0.vapi:4334.2-4334.38: note: previous definition of `TextBuffer' was here
  2589.     public class TextBuffer : GLib.Object {
  2590.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2591. gtk+-2.0.vapi:4436.2-4436.43: error: `Gtk' already contains a definition for `TextChildAnchor'
  2592.     public class TextChildAnchor : GLib.Object {
  2593.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2594. gtk+-3.0.vapi:4433.2-4433.43: note: previous definition of `TextChildAnchor' was here
  2595.     public class TextChildAnchor : GLib.Object {
  2596.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2597. gtk+-2.0.vapi:4448.2-4448.36: error: `Gtk' already contains a definition for `TextMark'
  2598.     public class TextMark : GLib.Object {
  2599.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2600. gtk+-3.0.vapi:4441.2-4441.36: note: previous definition of `TextMark' was here
  2601.     public class TextMark : GLib.Object {
  2602.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2603. gtk+-2.0.vapi:4466.2-4466.35: error: `Gtk' already contains a definition for `TextTag'
  2604.     public class TextTag : GLib.Object {
  2605.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2606. gtk+-3.0.vapi:4455.2-4455.35: note: previous definition of `TextTag' was here
  2607.     public class TextTag : GLib.Object {
  2608.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2609. gtk+-2.0.vapi:4615.2-4615.40: error: `Gtk' already contains a definition for `TextTagTable'
  2610.     public class TextTagTable : GLib.Object {
  2611.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2612. gtk+-3.0.vapi:4592.2-4592.55: note: previous definition of `TextTagTable' was here
  2613.     public class TextTagTable : GLib.Object, Gtk.Buildable {
  2614.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2615. gtk+-2.0.vapi:4632.2-4632.70: error: `Gtk' already contains a definition for `TextView'
  2616.     public class TextView : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2617.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2618. gtk+-3.0.vapi:4605.2-4605.86: note: previous definition of `TextView' was here
  2619.     public class TextView : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Scrollable {
  2620.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2621. gtk+-2.0.vapi:4767.2-4767.25: error: `Gtk' already contains a definition for `ThemeEngine'
  2622.     public class ThemeEngine {
  2623.     ^^^^^^^^^^^^^^^^^^^^^^^^
  2624. gtk+-3.0.vapi:4703.2-4703.25: note: previous definition of `ThemeEngine' was here
  2625.     public class ThemeEngine {
  2626.     ^^^^^^^^^^^^^^^^^^^^^^^^
  2627. gtk+-2.0.vapi:4770.2-4770.54: error: `Gtk' already contains a definition for `ToggleAction'
  2628.     public class ToggleAction : Gtk.Action, Gtk.Buildable {
  2629.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2630. gtk+-3.0.vapi:4769.2-4769.54: note: previous definition of `ToggleAction' was here
  2631.     public class ToggleAction : Gtk.Action, Gtk.Buildable {
  2632.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2633. gtk+-2.0.vapi:4783.2-4783.88: error: `Gtk' already contains a definition for `ToggleButton'
  2634.     public class ToggleButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2635.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2636. gtk+-3.0.vapi:4782.2-4782.104: note: previous definition of `ToggleButton' was here
  2637.     public class ToggleButton : Gtk.Button, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable {
  2638.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2639. gtk+-2.0.vapi:4804.2-4804.96: error: `Gtk' already contains a definition for `ToggleToolButton'
  2640.     public class ToggleToolButton : Gtk.ToolButton, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2641.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2642. gtk+-3.0.vapi:4803.2-4803.112: note: previous definition of `ToggleToolButton' was here
  2643.     public class ToggleToolButton : Gtk.ToolButton, Atk.Implementor, Gtk.Buildable, Gtk.Activatable, Gtk.Actionable {
  2644.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2645. gtk+-2.0.vapi:4815.2-4815.88: error: `Gtk' already contains a definition for `ToolButton'
  2646.     public class ToolButton : Gtk.ToolItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2647.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2648. gtk+-3.0.vapi:4814.2-4814.104: note: previous definition of `ToolButton' was here
  2649.     public class ToolButton : Gtk.ToolItem, Atk.Implementor, Gtk.Buildable, Gtk.Activatable, Gtk.Actionable {
  2650.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2651. gtk+-2.0.vapi:4841.2-4841.81: error: `Gtk' already contains a definition for `ToolItem'
  2652.     public class ToolItem : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2653.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2654. gtk+-3.0.vapi:4840.2-4840.81: note: previous definition of `ToolItem' was here
  2655.     public class ToolItem : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.Activatable {
  2656.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2657. gtk+-2.0.vapi:4877.2-4877.90: error: `Gtk' already contains a definition for `ToolItemGroup'
  2658.     public class ToolItemGroup : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.ToolShell {
  2659.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2660. gtk+-3.0.vapi:4876.2-4876.90: note: previous definition of `ToolItemGroup' was here
  2661.     public class ToolItemGroup : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.ToolShell {
  2662.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2663. gtk+-2.0.vapi:4903.2-4903.89: error: `Gtk' already contains a definition for `ToolPalette'
  2664.     public class ToolPalette : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2665.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2666. gtk+-3.0.vapi:4902.2-4902.105: note: previous definition of `ToolPalette' was here
  2667.     public class ToolPalette : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.Scrollable {
  2668.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2669. gtk+-2.0.vapi:4928.2-4928.100: error: `Gtk' already contains a definition for `Toolbar'
  2670.     public class Toolbar : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.ToolShell, Gtk.Orientable {
  2671.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2672. gtk+-3.0.vapi:4933.2-4933.100: note: previous definition of `Toolbar' was here
  2673.     public class Toolbar : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.ToolShell, Gtk.Orientable {
  2674.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2675. gtk+-2.0.vapi:4964.2-4964.35: error: `Gtk' already contains a definition for `Tooltip'
  2676.     public class Tooltip : GLib.Object {
  2677.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2678. gtk+-3.0.vapi:4960.2-4960.35: note: previous definition of `Tooltip' was here
  2679.     public class Tooltip : GLib.Object {
  2680.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2681. gtk+-2.0.vapi:4978.2-4978.78: error: `Gtk' already contains a definition for `TreeModelFilter'
  2682.     public class TreeModelFilter : GLib.Object, Gtk.TreeModel, Gtk.TreeDragSource {
  2683.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2684. gtk+-3.0.vapi:4974.2-4974.78: note: previous definition of `TreeModelFilter' was here
  2685.     public class TreeModelFilter : GLib.Object, Gtk.TreeModel, Gtk.TreeDragSource {
  2686.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2687. gtk+-2.0.vapi:4997.2-4997.94: error: `Gtk' already contains a definition for `TreeModelSort'
  2688.     public class TreeModelSort : GLib.Object, Gtk.TreeModel, Gtk.TreeSortable, Gtk.TreeDragSource {
  2689.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2690. gtk+-3.0.vapi:4997.2-4997.94: note: previous definition of `TreeModelSort' was here
  2691.     public class TreeModelSort : GLib.Object, Gtk.TreeModel, Gtk.TreeSortable, Gtk.TreeDragSource {
  2692.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2693. gtk+-2.0.vapi:5031.2-5031.22: error: `Gtk' already contains a definition for `TreePath'
  2694.     public class TreePath {
  2695.     ^^^^^^^^^^^^^^^^^^^^^
  2696. gtk+-3.0.vapi:5015.2-5015.22: note: previous definition of `TreePath' was here
  2697.     public class TreePath {
  2698.     ^^^^^^^^^^^^^^^^^^^^^
  2699. gtk+-2.0.vapi:5058.2-5058.30: error: `Gtk' already contains a definition for `TreeRowReference'
  2700.     public class TreeRowReference {
  2701.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2702. gtk+-3.0.vapi:5042.2-5042.30: note: previous definition of `TreeRowReference' was here
  2703.     public class TreeRowReference {
  2704.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2705. gtk+-2.0.vapi:5072.2-5072.41: error: `Gtk' already contains a definition for `TreeSelection'
  2706.     public class TreeSelection : GLib.Object {
  2707.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2708. gtk+-3.0.vapi:5056.2-5056.41: note: previous definition of `TreeSelection' was here
  2709.     public class TreeSelection : GLib.Object {
  2710.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2711. gtk+-2.0.vapi:5103.2-5103.123: error: `Gtk' already contains a definition for `TreeStore'
  2712.     public class TreeStore : GLib.Object, Gtk.Buildable, Gtk.TreeModel, Gtk.TreeSortable, Gtk.TreeDragSource, Gtk.TreeDragDest {
  2713.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2714. gtk+-3.0.vapi:5083.2-5083.123: note: previous definition of `TreeStore' was here
  2715.     public class TreeStore : GLib.Object, Gtk.TreeModel, Gtk.TreeDragSource, Gtk.TreeDragDest, Gtk.TreeSortable, Gtk.Buildable {
  2716.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2717. gtk+-2.0.vapi:5146.2-5146.70: error: `Gtk' already contains a definition for `TreeView'
  2718.     public class TreeView : Gtk.Container, Atk.Implementor, Gtk.Buildable {
  2719.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2720. gtk+-3.0.vapi:5113.2-5113.86: note: previous definition of `TreeView' was here
  2721.     public class TreeView : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.Scrollable {
  2722.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2723. gtk+-2.0.vapi:5285.2-5285.72: error: `Gtk' already contains a definition for `TreeViewColumn'
  2724.     public class TreeViewColumn : Gtk.Object, Gtk.Buildable, Gtk.CellLayout {
  2725.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2726. gtk+-3.0.vapi:5251.2-5251.83: note: previous definition of `TreeViewColumn' was here
  2727.     public class TreeViewColumn : GLib.InitiallyUnowned, Gtk.CellLayout, Gtk.Buildable {
  2728.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2729. gtk+-2.0.vapi:5373.2-5373.52: error: `Gtk' already contains a definition for `UIManager'
  2730.     public class UIManager : GLib.Object, Gtk.Buildable {
  2731.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2732. gtk+-3.0.vapi:5325.2-5325.52: note: previous definition of `UIManager' was here
  2733.     public class UIManager : GLib.Object, Gtk.Buildable {
  2734.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2735. gtk+-2.0.vapi:5402.2-5402.76: error: `Gtk' already contains a definition for `VBox'
  2736.     public class VBox : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2737.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2738. gtk+-3.0.vapi:5355.2-5355.76: note: previous definition of `VBox' was here
  2739.     public class VBox : Gtk.Box, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2740.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2741. gtk+-2.0.vapi:5407.2-5407.88: error: `Gtk' already contains a definition for `VButtonBox'
  2742.     public class VButtonBox : Gtk.ButtonBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2743.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2744. gtk+-3.0.vapi:5360.2-5360.88: note: previous definition of `VButtonBox' was here
  2745.     public class VButtonBox : Gtk.ButtonBox, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2746.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2747. gtk+-2.0.vapi:5412.2-5412.80: error: `Gtk' already contains a definition for `VPaned'
  2748.     public class VPaned : Gtk.Paned, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2749.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2750. gtk+-3.0.vapi:5365.2-5365.80: note: previous definition of `VPaned' was here
  2751.     public class VPaned : Gtk.Paned, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2752.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2753. gtk+-2.0.vapi:5422.2-5422.80: error: `Gtk' already contains a definition for `VScale'
  2754.     public class VScale : Gtk.Scale, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2755.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2756. gtk+-3.0.vapi:5370.2-5370.80: note: previous definition of `VScale' was here
  2757.     public class VScale : Gtk.Scale, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2758.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2759. gtk+-2.0.vapi:5429.2-5429.88: error: `Gtk' already contains a definition for `VScrollbar'
  2760.     public class VScrollbar : Gtk.Scrollbar, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2761.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2762. gtk+-3.0.vapi:5377.2-5377.88: note: previous definition of `VScrollbar' was here
  2763.     public class VScrollbar : Gtk.Scrollbar, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2764.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2765. gtk+-2.0.vapi:5434.2-5434.88: error: `Gtk' already contains a definition for `VSeparator'
  2766.     public class VSeparator : Gtk.Separator, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2767.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2768. gtk+-3.0.vapi:5382.2-5382.88: note: previous definition of `VSeparator' was here
  2769.     public class VSeparator : Gtk.Separator, Atk.Implementor, Gtk.Buildable, Gtk.Orientable {
  2770.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2771. gtk+-2.0.vapi:5439.2-5439.64: error: `Gtk' already contains a definition for `Viewport'
  2772.     public class Viewport : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2773.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2774. gtk+-3.0.vapi:5387.2-5387.80: note: previous definition of `Viewport' was here
  2775.     public class Viewport : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.Scrollable {
  2776.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2777. gtk+-2.0.vapi:5457.2-5457.109: error: `Gtk' already contains a definition for `VolumeButton'
  2778.     public class VolumeButton : Gtk.ScaleButton, Atk.Implementor, Gtk.Buildable, Gtk.Orientable, Gtk.Activatable {
  2779.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2780. gtk+-3.0.vapi:5401.2-5401.125: note: previous definition of `VolumeButton' was here
  2781.     public class VolumeButton : Gtk.ScaleButton, Atk.Implementor, Gtk.Buildable, Gtk.Actionable, Gtk.Activatable, Gtk.Orientable {
  2782.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2783. gtk+-2.0.vapi:5462.2-5462.65: error: `Gtk' already contains a definition for `Widget'
  2784.     public class Widget : Gtk.Object, Atk.Implementor, Gtk.Buildable {
  2785.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2786. gtk+-3.0.vapi:5408.2-5408.76: note: previous definition of `Widget' was here
  2787.     public class Widget : GLib.InitiallyUnowned, Atk.Implementor, Gtk.Buildable {
  2788.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2789. gtk+-2.0.vapi:5757.2-5757.27: error: `Gtk' already contains a definition for `WidgetAuxInfo'
  2790.     public class WidgetAuxInfo {
  2791.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  2792. gtk+-3.0.vapi:5750.2-5750.27: note: previous definition of `WidgetAuxInfo' was here
  2793.     public class WidgetAuxInfo {
  2794.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  2795. gtk+-2.0.vapi:5773.2-5773.62: error: `Gtk' already contains a definition for `Window'
  2796.     public class Window : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2797.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2798. gtk+-3.0.vapi:5794.2-5794.62: note: previous definition of `Window' was here
  2799.     public class Window : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
  2800.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2801. gtk+-2.0.vapi:5953.2-5953.32: error: `Gtk' already contains a definition for `WindowGeometryInfo'
  2802.     public class WindowGeometryInfo {
  2803.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2804. gtk+-3.0.vapi:5958.2-5958.32: note: previous definition of `WindowGeometryInfo' was here
  2805.     public class WindowGeometryInfo {
  2806.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2807. gtk+-2.0.vapi:5956.2-5956.39: error: `Gtk' already contains a definition for `WindowGroup'
  2808.     public class WindowGroup : GLib.Object {
  2809.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2810. gtk+-3.0.vapi:5961.2-5961.39: note: previous definition of `WindowGroup' was here
  2811.     public class WindowGroup : GLib.Object {
  2812.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2813. gtk+-2.0.vapi:6248.2-6248.23: error: `Gtk' already contains a definition for `AccelKey'
  2814.     public struct AccelKey {
  2815.     ^^^^^^^^^^^^^^^^^^^^^^
  2816. gtk+-3.0.vapi:6316.2-6316.23: note: previous definition of `AccelKey' was here
  2817.     public struct AccelKey {
  2818.     ^^^^^^^^^^^^^^^^^^^^^^
  2819. gtk+-2.0.vapi:6254.2-6254.26: error: `Gtk' already contains a definition for `ActionEntry'
  2820.     public struct ActionEntry {
  2821.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  2822. gtk+-3.0.vapi:6322.2-6322.26: note: previous definition of `ActionEntry' was here
  2823.     public struct ActionEntry {
  2824.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  2825. gtk+-2.0.vapi:6264.2-6264.25: error: `Gtk' already contains a definition for `Allocation'
  2826.     public struct Allocation {
  2827.     ^^^^^^^^^^^^^^^^^^^^^^^^
  2828. gtk+-3.0.vapi:6332.2-6332.25: note: previous definition of `Allocation' was here
  2829.     public struct Allocation {
  2830.     ^^^^^^^^^^^^^^^^^^^^^^^^
  2831. gtk+-2.0.vapi:6271.2-6271.28: error: `Gtk' already contains a definition for `IMContextInfo'
  2832.     public struct IMContextInfo {
  2833.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2834. gtk+-3.0.vapi:6356.2-6356.28: note: previous definition of `IMContextInfo' was here
  2835.     public struct IMContextInfo {
  2836.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2837. gtk+-2.0.vapi:6279.2-6279.31: error: `Gtk' already contains a definition for `RadioActionEntry'
  2838.     public struct RadioActionEntry {
  2839.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2840. gtk+-3.0.vapi:6364.2-6364.31: note: previous definition of `RadioActionEntry' was here
  2841.     public struct RadioActionEntry {
  2842.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2843. gtk+-2.0.vapi:6288.2-6288.25: error: `Gtk' already contains a definition for `RecentData'
  2844.     public struct RecentData {
  2845.     ^^^^^^^^^^^^^^^^^^^^^^^^
  2846. gtk+-3.0.vapi:6373.2-6373.25: note: previous definition of `RecentData' was here
  2847.     public struct RecentData {
  2848.     ^^^^^^^^^^^^^^^^^^^^^^^^
  2849. gtk+-2.0.vapi:6299.2-6299.26: error: `Gtk' already contains a definition for `Requisition'
  2850.     public struct Requisition {
  2851.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  2852. gtk+-3.0.vapi:6384.2-6384.26: note: previous definition of `Requisition' was here
  2853.     public struct Requisition {
  2854.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  2855. gtk+-2.0.vapi:6306.2-6306.24: error: `Gtk' already contains a definition for `StockItem'
  2856.     public struct StockItem {
  2857.     ^^^^^^^^^^^^^^^^^^^^^^^
  2858. gtk+-3.0.vapi:6391.2-6391.24: note: previous definition of `StockItem' was here
  2859.     public struct StockItem {
  2860.     ^^^^^^^^^^^^^^^^^^^^^^^
  2861. gtk+-2.0.vapi:6316.2-6316.26: error: `Gtk' already contains a definition for `TargetEntry'
  2862.     public struct TargetEntry {
  2863.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  2864. gtk+-3.0.vapi:6401.2-6401.26: note: previous definition of `TargetEntry' was here
  2865.     public struct TargetEntry {
  2866.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  2867. gtk+-2.0.vapi:6322.2-6322.23: error: `Gtk' already contains a definition for `TextIter'
  2868.     public struct TextIter {
  2869.     ^^^^^^^^^^^^^^^^^^^^^^
  2870. gtk+-3.0.vapi:6411.2-6411.23: note: previous definition of `TextIter' was here
  2871.     public struct TextIter {
  2872.     ^^^^^^^^^^^^^^^^^^^^^^
  2873. gtk+-2.0.vapi:6429.2-6429.32: error: `Gtk' already contains a definition for `ToggleActionEntry'
  2874.     public struct ToggleActionEntry {
  2875.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2876. gtk+-3.0.vapi:6519.2-6519.32: note: previous definition of `ToggleActionEntry' was here
  2877.     public struct ToggleActionEntry {
  2878.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2879. gtk+-2.0.vapi:6440.2-6440.23: error: `Gtk' already contains a definition for `TreeIter'
  2880.     public struct TreeIter {
  2881.     ^^^^^^^^^^^^^^^^^^^^^^
  2882. gtk+-3.0.vapi:6530.2-6530.23: note: previous definition of `TreeIter' was here
  2883.     public struct TreeIter {
  2884.     ^^^^^^^^^^^^^^^^^^^^^^
  2885. gtk+-2.0.vapi:5965.2-5965.43: error: `Gtk' already contains a definition for `Activatable'
  2886.     public interface Activatable : GLib.Object {
  2887.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2888. gtk+-3.0.vapi:5983.2-5983.43: note: previous definition of `Activatable' was here
  2889.     public interface Activatable : GLib.Object {
  2890.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2891. gtk+-2.0.vapi:5978.2-5978.27: error: `Gtk' already contains a definition for `Buildable'
  2892.     public interface Buildable {
  2893.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  2894. gtk+-3.0.vapi:6003.2-6003.41: note: previous definition of `Buildable' was here
  2895.     public interface Buildable : GLib.Object {
  2896.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2897. gtk+-2.0.vapi:5991.2-5991.43: error: `Gtk' already contains a definition for `CellEditable'
  2898.     public interface CellEditable : Gtk.Widget {
  2899.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2900. gtk+-3.0.vapi:6016.2-6016.43: note: previous definition of `CellEditable' was here
  2901.     public interface CellEditable : Gtk.Widget {
  2902.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2903. gtk+-2.0.vapi:6001.2-6001.42: error: `Gtk' already contains a definition for `CellLayout'
  2904.     public interface CellLayout : GLib.Object {
  2905.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2906. gtk+-3.0.vapi:6026.2-6026.42: note: previous definition of `CellLayout' was here
  2907.     public interface CellLayout : GLib.Object {
  2908.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2909. gtk+-2.0.vapi:6013.2-6013.26: error: `Gtk' already contains a definition for `Editable'
  2910.     public interface Editable {
  2911.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  2912. gtk+-3.0.vapi:6039.2-6039.26: note: previous definition of `Editable' was here
  2913.     public interface Editable {
  2914.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  2915. gtk+-2.0.vapi:6037.2-6037.42: error: `Gtk' already contains a definition for `FileChooser'
  2916.     public interface FileChooser : Gtk.Widget {
  2917.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2918. gtk+-3.0.vapi:6063.2-6063.42: note: previous definition of `FileChooser' was here
  2919.     public interface FileChooser : Gtk.Widget {
  2920.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2921. gtk+-2.0.vapi:6116.2-6116.34: error: `Gtk' already contains a definition for `FileChooserEmbed'
  2922.     public interface FileChooserEmbed {
  2923.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2924. gtk+-3.0.vapi:6141.2-6141.34: note: previous definition of `FileChooserEmbed' was here
  2925.     public interface FileChooserEmbed {
  2926.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2927. gtk+-2.0.vapi:6119.2-6119.28: error: `Gtk' already contains a definition for `Orientable'
  2928.     public interface Orientable {
  2929.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2930. gtk+-3.0.vapi:6164.2-6164.42: note: previous definition of `Orientable' was here
  2931.     public interface Orientable : GLib.Object {
  2932.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2933. gtk+-2.0.vapi:6124.2-6124.53: error: `Gtk' already contains a definition for `PrintOperationPreview'
  2934.     public interface PrintOperationPreview : GLib.Object {
  2935.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2936. gtk+-3.0.vapi:6170.2-6170.53: note: previous definition of `PrintOperationPreview' was here
  2937.     public interface PrintOperationPreview : GLib.Object {
  2938.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2939. gtk+-2.0.vapi:6132.2-6132.45: error: `Gtk' already contains a definition for `RecentChooser'
  2940.     public interface RecentChooser : GLib.Object {
  2941.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2942. gtk+-3.0.vapi:6178.2-6178.45: note: previous definition of `RecentChooser' was here
  2943.     public interface RecentChooser : GLib.Object {
  2944.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2945. gtk+-2.0.vapi:6181.2-6181.40: error: `Gtk' already contains a definition for `ToolShell'
  2946.     public interface ToolShell : Gtk.Widget {
  2947.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2948. gtk+-3.0.vapi:6248.2-6248.40: note: previous definition of `ToolShell' was here
  2949.     public interface ToolShell : Gtk.Widget {
  2950.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2951. gtk+-2.0.vapi:6193.2-6193.30: error: `Gtk' already contains a definition for `TreeDragDest'
  2952.     public interface TreeDragDest {
  2953.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2954. gtk+-3.0.vapi:6260.2-6260.30: note: previous definition of `TreeDragDest' was here
  2955.     public interface TreeDragDest {
  2956.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2957. gtk+-2.0.vapi:6198.2-6198.32: error: `Gtk' already contains a definition for `TreeDragSource'
  2958.     public interface TreeDragSource {
  2959.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2960. gtk+-3.0.vapi:6265.2-6265.32: note: previous definition of `TreeDragSource' was here
  2961.     public interface TreeDragSource {
  2962.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2963. gtk+-2.0.vapi:6204.2-6204.41: error: `Gtk' already contains a definition for `TreeModel'
  2964.     public interface TreeModel : GLib.Object {
  2965.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2966. gtk+-3.0.vapi:6271.2-6271.41: note: previous definition of `TreeModel' was here
  2967.     public interface TreeModel : GLib.Object {
  2968.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2969. gtk+-2.0.vapi:6238.2-6238.59: error: `Gtk' already contains a definition for `TreeSortable'
  2970.     public interface TreeSortable : Gtk.TreeModel, GLib.Object {
  2971.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2972. gtk+-3.0.vapi:6306.2-6306.59: note: previous definition of `TreeSortable' was here
  2973.     public interface TreeSortable : Gtk.TreeModel, GLib.Object {
  2974.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2975. gtk+-2.0.vapi:7418.2-7418.40: error: `Gtk' already contains a definition for `AccelGroupActivate'
  2976.     public delegate bool AccelGroupActivate (Gtk.AccelGroup accel_group, GLib.Object acceleratable, uint keyval, Gdk.ModifierType modifier);
  2977.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2978. gtk+-3.0.vapi:7400.2-7400.40: note: previous definition of `AccelGroupActivate' was here
  2979.     public delegate bool AccelGroupActivate (Gtk.AccelGroup accel_group, GLib.Object acceleratable, uint keyval, Gdk.ModifierType modifier);
  2980.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2981. gtk+-2.0.vapi:7420.2-7420.40: error: `Gtk' already contains a definition for `AccelGroupFindFunc'
  2982.     public delegate bool AccelGroupFindFunc (Gtk.AccelKey key, GLib.Closure closure);
  2983.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2984. gtk+-3.0.vapi:7402.2-7402.40: note: previous definition of `AccelGroupFindFunc' was here
  2985.     public delegate bool AccelGroupFindFunc (Gtk.AccelKey key, GLib.Closure closure);
  2986.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2987. gtk+-2.0.vapi:7422.2-7422.37: error: `Gtk' already contains a definition for `AccelMapForeach'
  2988.     public delegate void AccelMapForeach (void* data, string accel_path, uint accel_key, Gdk.ModifierType accel_mods, bool changed);
  2989.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2990. gtk+-3.0.vapi:7404.2-7404.37: note: previous definition of `AccelMapForeach' was here
  2991.     public delegate void AccelMapForeach (void* data, string accel_path, uint accel_key, Gdk.ModifierType accel_mods, bool changed);
  2992.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2993. gtk+-2.0.vapi:7424.2-7424.36: error: `Gtk' already contains a definition for `ActionCallback'
  2994.     public delegate void ActionCallback (Gtk.Action action);
  2995.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2996. gtk+-3.0.vapi:7406.2-7406.36: note: previous definition of `ActionCallback' was here
  2997.     public delegate void ActionCallback (Gtk.Action action);
  2998.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2999. gtk+-2.0.vapi:7426.2-7426.38: error: `Gtk' already contains a definition for `AssistantPageFunc'
  3000.     public delegate int AssistantPageFunc (int current_page);
  3001.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3002. gtk+-3.0.vapi:7408.2-7408.38: note: previous definition of `AssistantPageFunc' was here
  3003.     public delegate int AssistantPageFunc (int current_page);
  3004.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3005. gtk+-2.0.vapi:7428.2-7428.40: error: `Gtk' already contains a definition for `BuilderConnectFunc'
  3006.     public delegate void BuilderConnectFunc (Gtk.Builder builder, GLib.Object object, string signal_name, string handler_name, GLib.Object? connect_object, GLib.ConnectFlags flags);
  3007.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3008. gtk+-3.0.vapi:7410.2-7410.40: note: previous definition of `BuilderConnectFunc' was here
  3009.     public delegate void BuilderConnectFunc (Gtk.Builder builder, GLib.Object object, string signal_name, string handler_name, GLib.Object? connect_object, GLib.ConnectFlags flags);
  3010.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3011. gtk+-2.0.vapi:7430.2-7430.42: error: `Gtk' already contains a definition for `CalendarDetailFunc'
  3012.     public delegate string CalendarDetailFunc (Gtk.Calendar calendar, uint year, uint month, uint day);
  3013.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3014. gtk+-3.0.vapi:7412.2-7412.42: note: previous definition of `CalendarDetailFunc' was here
  3015.     public delegate string CalendarDetailFunc (Gtk.Calendar calendar, uint year, uint month, uint day);
  3016.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3017. gtk+-2.0.vapi:7432.2-7432.30: error: `Gtk' already contains a definition for `Callback'
  3018.     public delegate void Callback (Gtk.Widget widget);
  3019.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3020. gtk+-3.0.vapi:7414.2-7414.30: note: previous definition of `Callback' was here
  3021.     public delegate void Callback (Gtk.Widget widget);
  3022.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3023. gtk+-2.0.vapi:7436.2-7436.40: error: `Gtk' already contains a definition for `CellLayoutDataFunc'
  3024.     public delegate void CellLayoutDataFunc (Gtk.CellLayout cell_layout, Gtk.CellRenderer cell, Gtk.TreeModel tree_model, Gtk.TreeIter iter);
  3025.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3026. gtk+-3.0.vapi:7420.2-7420.40: note: previous definition of `CellLayoutDataFunc' was here
  3027.     public delegate void CellLayoutDataFunc (Gtk.CellLayout cell_layout, Gtk.CellRenderer cell, Gtk.TreeModel tree_model, Gtk.TreeIter iter);
  3028.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3029. gtk+-2.0.vapi:7438.2-7438.40: error: `Gtk' already contains a definition for `ClipboardClearFunc'
  3030.     public delegate void ClipboardClearFunc (Gtk.Clipboard clipboard, void* user_data_or_owner);
  3031.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3032. gtk+-3.0.vapi:7422.2-7422.40: note: previous definition of `ClipboardClearFunc' was here
  3033.     public delegate void ClipboardClearFunc (Gtk.Clipboard clipboard, void* user_data_or_owner);
  3034.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3035. gtk+-2.0.vapi:7440.2-7440.38: error: `Gtk' already contains a definition for `ClipboardGetFunc'
  3036.     public delegate void ClipboardGetFunc (Gtk.Clipboard clipboard, Gtk.SelectionData selection_data, uint info, void* user_data_or_owner);
  3037.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3038. gtk+-3.0.vapi:7424.2-7424.38: note: previous definition of `ClipboardGetFunc' was here
  3039.     public delegate void ClipboardGetFunc (Gtk.Clipboard clipboard, Gtk.SelectionData selection_data, uint info, void* user_data_or_owner);
  3040.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3041. gtk+-2.0.vapi:7442.2-7442.48: error: `Gtk' already contains a definition for `ClipboardImageReceivedFunc'
  3042.     public delegate void ClipboardImageReceivedFunc (Gtk.Clipboard clipboard, Gdk.Pixbuf pixbuf);
  3043.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3044. gtk+-3.0.vapi:7426.2-7426.48: note: previous definition of `ClipboardImageReceivedFunc' was here
  3045.     public delegate void ClipboardImageReceivedFunc (Gtk.Clipboard clipboard, Gdk.Pixbuf pixbuf);
  3046.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3047. gtk+-2.0.vapi:7444.2-7444.43: error: `Gtk' already contains a definition for `ClipboardReceivedFunc'
  3048.     public delegate void ClipboardReceivedFunc (Gtk.Clipboard clipboard, Gtk.SelectionData selection_data);
  3049.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3050. gtk+-3.0.vapi:7428.2-7428.43: note: previous definition of `ClipboardReceivedFunc' was here
  3051.     public delegate void ClipboardReceivedFunc (Gtk.Clipboard clipboard, Gtk.SelectionData selection_data);
  3052.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3053. gtk+-2.0.vapi:7446.2-7446.51: error: `Gtk' already contains a definition for `ClipboardRichTextReceivedFunc'
  3054.     public delegate void ClipboardRichTextReceivedFunc (Gtk.Clipboard clipboard, Gdk.Atom format, [CCode (array_length_type = "gsize")] uint8[] text);
  3055.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3056. gtk+-3.0.vapi:7430.2-7430.51: note: previous definition of `ClipboardRichTextReceivedFunc' was here
  3057.     public delegate void ClipboardRichTextReceivedFunc (Gtk.Clipboard clipboard, Gdk.Atom format, [CCode (array_length_type = "gsize")] uint8[] text);
  3058.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3059. gtk+-2.0.vapi:7448.2-7448.50: error: `Gtk' already contains a definition for `ClipboardTargetsReceivedFunc'
  3060.     public delegate void ClipboardTargetsReceivedFunc (Gtk.Clipboard clipboard, Gdk.Atom[] atoms);
  3061.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3062. gtk+-3.0.vapi:7432.2-7432.50: note: previous definition of `ClipboardTargetsReceivedFunc' was here
  3063.     public delegate void ClipboardTargetsReceivedFunc (Gtk.Clipboard clipboard, Gdk.Atom[] atoms);
  3064.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3065. gtk+-2.0.vapi:7450.2-7450.47: error: `Gtk' already contains a definition for `ClipboardTextReceivedFunc'
  3066.     public delegate void ClipboardTextReceivedFunc (Gtk.Clipboard clipboard, string? text);
  3067.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3068. gtk+-3.0.vapi:7434.2-7434.47: note: previous definition of `ClipboardTextReceivedFunc' was here
  3069.     public delegate void ClipboardTextReceivedFunc (Gtk.Clipboard clipboard, string? text);
  3070.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3071. gtk+-2.0.vapi:7452.2-7452.46: error: `Gtk' already contains a definition for `ClipboardURIReceivedFunc'
  3072.     public delegate void ClipboardURIReceivedFunc (Gtk.Clipboard clipboard, [CCode (array_length = false, array_null_terminated = true)] string[] uris);
  3073.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3074. gtk+-3.0.vapi:7436.2-7436.46: note: previous definition of `ClipboardURIReceivedFunc' was here
  3075.     public delegate void ClipboardURIReceivedFunc (Gtk.Clipboard clipboard, [CCode (array_length = false, array_null_terminated = true)] string[] uris);
  3076.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3077. gtk+-2.0.vapi:7454.2-7454.53: error: `Gtk' already contains a definition for `ColorSelectionChangePaletteFunc'
  3078.     public delegate void ColorSelectionChangePaletteFunc (Gdk.Color colors, int n_colors);
  3079.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3080. gtk+-3.0.vapi:7438.2-7438.53: note: previous definition of `ColorSelectionChangePaletteFunc' was here
  3081.     public delegate void ColorSelectionChangePaletteFunc (Gdk.Color colors, int n_colors);
  3082.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3083. gtk+-2.0.vapi:7456.2-7456.63: error: `Gtk' already contains a definition for `ColorSelectionChangePaletteWithScreenFunc'
  3084.     public delegate void ColorSelectionChangePaletteWithScreenFunc (Gdk.Screen screen, Gdk.Color colors, int n_colors);
  3085.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3086. gtk+-3.0.vapi:7440.2-7440.63: note: previous definition of `ColorSelectionChangePaletteWithScreenFunc' was here
  3087.     public delegate void ColorSelectionChangePaletteWithScreenFunc (Gdk.Screen screen, Gdk.Color colors, int n_colors);
  3088.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3089. gtk+-2.0.vapi:7458.2-7458.46: error: `Gtk' already contains a definition for `EntryCompletionMatchFunc'
  3090.     public delegate bool EntryCompletionMatchFunc (Gtk.EntryCompletion completion, string key, Gtk.TreeIter iter);
  3091.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3092. gtk+-3.0.vapi:7442.2-7442.46: note: previous definition of `EntryCompletionMatchFunc' was here
  3093.     public delegate bool EntryCompletionMatchFunc (Gtk.EntryCompletion completion, string key, Gtk.TreeIter iter);
  3094.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3095. gtk+-2.0.vapi:7460.2-7460.36: error: `Gtk' already contains a definition for `FileFilterFunc'
  3096.     public delegate bool FileFilterFunc (Gtk.FileFilterInfo filter_info);
  3097.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3098. gtk+-3.0.vapi:7444.2-7444.36: note: previous definition of `FileFilterFunc' was here
  3099.     public delegate bool FileFilterFunc (Gtk.FileFilterInfo filter_info);
  3100.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3101. gtk+-2.0.vapi:7464.2-7464.41: error: `Gtk' already contains a definition for `IconViewForeachFunc'
  3102.     public delegate void IconViewForeachFunc (Gtk.IconView icon_view, Gtk.TreePath path);
  3103.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3104. gtk+-3.0.vapi:7448.2-7448.41: note: previous definition of `IconViewForeachFunc' was here
  3105.     public delegate void IconViewForeachFunc (Gtk.IconView icon_view, Gtk.TreePath path);
  3106.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3107. gtk+-2.0.vapi:7466.2-7466.33: error: `Gtk' already contains a definition for `KeySnoopFunc'
  3108.     public delegate int KeySnoopFunc (Gtk.Widget grab_widget, Gdk.EventKey event, void* func_data);
  3109.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3110. gtk+-3.0.vapi:7450.2-7450.33: note: previous definition of `KeySnoopFunc' was here
  3111.     public delegate int KeySnoopFunc (Gtk.Widget grab_widget, Gdk.EventKey event, void* func_data);
  3112.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3113. gtk+-2.0.vapi:7470.2-7470.36: error: `Gtk' already contains a definition for `MenuDetachFunc'
  3114.     public delegate void MenuDetachFunc (Gtk.Widget attach_widget, Gtk.Menu menu);
  3115.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3116. gtk+-3.0.vapi:7452.2-7452.36: note: previous definition of `MenuDetachFunc' was here
  3117.     public delegate void MenuDetachFunc (Gtk.Widget attach_widget, Gtk.Menu menu);
  3118.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3119. gtk+-2.0.vapi:7472.2-7472.38: error: `Gtk' already contains a definition for `MenuPositionFunc'
  3120.     public delegate void MenuPositionFunc (Gtk.Menu menu, out int x, out int y, out bool push_in);
  3121.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3122. gtk+-3.0.vapi:7454.2-7454.38: note: previous definition of `MenuPositionFunc' was here
  3123.     public delegate void MenuPositionFunc (Gtk.Menu menu, out int x, out int y, out bool push_in);
  3124.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3125. gtk+-2.0.vapi:7474.2-7474.43: error: `Gtk' already contains a definition for `ModuleDisplayInitFunc'
  3126.     public delegate void ModuleDisplayInitFunc (Gdk.Display display);
  3127.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3128. gtk+-3.0.vapi:7456.2-7456.43: note: previous definition of `ModuleDisplayInitFunc' was here
  3129.     public delegate void ModuleDisplayInitFunc (Gdk.Display display);
  3130.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3131. gtk+-2.0.vapi:7476.2-7476.36: error: `Gtk' already contains a definition for `ModuleInitFunc'
  3132.     public delegate void ModuleInitFunc (int argc, string argv);
  3133.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3134. gtk+-3.0.vapi:7458.2-7458.36: note: previous definition of `ModuleInitFunc' was here
  3135.     public delegate void ModuleInitFunc (int argc, string argv);
  3136.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3137. gtk+-2.0.vapi:7480.2-7480.39: error: `Gtk' already contains a definition for `PageSetupDoneFunc'
  3138.     public delegate void PageSetupDoneFunc (Gtk.PageSetup page_setup);
  3139.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3140. gtk+-3.0.vapi:7460.2-7460.39: note: previous definition of `PageSetupDoneFunc' was here
  3141.     public delegate void PageSetupDoneFunc (Gtk.PageSetup page_setup);
  3142.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3143. gtk+-2.0.vapi:7482.2-7482.39: error: `Gtk' already contains a definition for `PrintSettingsFunc'
  3144.     public delegate void PrintSettingsFunc (string key, string value);
  3145.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3146. gtk+-3.0.vapi:7462.2-7462.39: note: previous definition of `PrintSettingsFunc' was here
  3147.     public delegate void PrintSettingsFunc (string key, string value);
  3148.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3149. gtk+-2.0.vapi:7484.2-7484.41: error: `Gtk' already contains a definition for `RadioActionCallback'
  3150.     public delegate void RadioActionCallback (Gtk.Action action, Gtk.Action current);
  3151.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3152. gtk+-3.0.vapi:7464.2-7464.41: note: previous definition of `RadioActionCallback' was here
  3153.     public delegate void RadioActionCallback (Gtk.Action action, Gtk.Action current);
  3154.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3155. gtk+-2.0.vapi:7486.2-7486.38: error: `Gtk' already contains a definition for `RcPropertyParser'
  3156.     public delegate bool RcPropertyParser (GLib.ParamSpec pspec, GLib.StringBuilder rc_string, GLib.Value property_value);
  3157.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3158. gtk+-3.0.vapi:7466.2-7466.38: note: previous definition of `RcPropertyParser' was here
  3159.     public delegate bool RcPropertyParser (GLib.ParamSpec pspec, GLib.StringBuilder rc_string, GLib.Value property_value);
  3160.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3161. gtk+-2.0.vapi:7488.2-7488.38: error: `Gtk' already contains a definition for `RecentFilterFunc'
  3162.     public delegate bool RecentFilterFunc (Gtk.RecentFilterInfo filter_info);
  3163.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3164. gtk+-3.0.vapi:7468.2-7468.38: note: previous definition of `RecentFilterFunc' was here
  3165.     public delegate bool RecentFilterFunc (Gtk.RecentFilterInfo filter_info);
  3166.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3167. gtk+-2.0.vapi:7490.2-7490.35: error: `Gtk' already contains a definition for `RecentSortFunc'
  3168.     public delegate int RecentSortFunc (Gtk.RecentInfo a, Gtk.RecentInfo b);
  3169.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3170. gtk+-3.0.vapi:7470.2-7470.35: note: previous definition of `RecentSortFunc' was here
  3171.     public delegate int RecentSortFunc (Gtk.RecentInfo a, Gtk.RecentInfo b);
  3172.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3173. gtk+-2.0.vapi:7492.2-7492.47: error: `Gtk' already contains a definition for `TextBufferDeserializeFunc'
  3174.     public delegate bool TextBufferDeserializeFunc (Gtk.TextBuffer register_buffer, Gtk.TextBuffer content_buffer, Gtk.TextIter iter, [CCode (array_length_type = "gsize")] uint8[] data, bool create_tags) throws GLib.Error;
  3175.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3176. gtk+-3.0.vapi:7474.2-7474.47: note: previous definition of `TextBufferDeserializeFunc' was here
  3177.     public delegate bool TextBufferDeserializeFunc (Gtk.TextBuffer register_buffer, Gtk.TextBuffer content_buffer, Gtk.TextIter iter, [CCode (array_length_type = "gsize")] uint8[] data, bool create_tags) throws GLib.Error;
  3178.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3179. gtk+-2.0.vapi:7494.2-7494.46: error: `Gtk' already contains a definition for `TextBufferSerializeFunc'
  3180.     public delegate uchar TextBufferSerializeFunc (Gtk.TextBuffer register_buffer, Gtk.TextBuffer content_buffer, Gtk.TextIter start, Gtk.TextIter end, size_t length);
  3181.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3182. gtk+-3.0.vapi:7476.2-7476.46: note: previous definition of `TextBufferSerializeFunc' was here
  3183.     public delegate uchar TextBufferSerializeFunc (Gtk.TextBuffer register_buffer, Gtk.TextBuffer content_buffer, Gtk.TextIter start, Gtk.TextIter end, size_t length);
  3184.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3185. gtk+-2.0.vapi:7496.2-7496.39: error: `Gtk' already contains a definition for `TextCharPredicate'
  3186.     public delegate bool TextCharPredicate (unichar ch);
  3187.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3188. gtk+-3.0.vapi:7478.2-7478.39: note: previous definition of `TextCharPredicate' was here
  3189.     public delegate bool TextCharPredicate (unichar ch);
  3190.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3191. gtk+-2.0.vapi:7498.2-7498.41: error: `Gtk' already contains a definition for `TextTagTableForeach'
  3192.     public delegate void TextTagTableForeach (Gtk.TextTag tag);
  3193.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3194. gtk+-3.0.vapi:7480.2-7480.41: note: previous definition of `TextTagTableForeach' was here
  3195.     public delegate void TextTagTableForeach (Gtk.TextTag tag);
  3196.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3197. gtk+-2.0.vapi:7500.2-7500.45: error: `Gtk' already contains a definition for `TranslateFunc'
  3198.     public delegate unowned string TranslateFunc (string path);
  3199.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3200. gtk+-3.0.vapi:7482.2-7482.45: note: previous definition of `TranslateFunc' was here
  3201.     public delegate unowned string TranslateFunc (string path);
  3202.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3203. gtk+-2.0.vapi:7502.2-7502.38: error: `Gtk' already contains a definition for `TreeCellDataFunc'
  3204.     public delegate void TreeCellDataFunc (Gtk.TreeViewColumn tree_column, Gtk.CellRenderer cell, Gtk.TreeModel tree_model, Gtk.TreeIter iter);
  3205.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3206. gtk+-3.0.vapi:7484.2-7484.38: note: previous definition of `TreeCellDataFunc' was here
  3207.     public delegate void TreeCellDataFunc (Gtk.TreeViewColumn tree_column, Gtk.CellRenderer cell, Gtk.TreeModel tree_model, Gtk.TreeIter iter);
  3208.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3209. gtk+-2.0.vapi:7504.2-7504.42: error: `Gtk' already contains a definition for `TreeDestroyCountFunc'
  3210.     public delegate void TreeDestroyCountFunc (Gtk.TreeView tree_view, Gtk.TreePath path, int children);
  3211.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3212. gtk+-3.0.vapi:7486.2-7486.42: note: previous definition of `TreeDestroyCountFunc' was here
  3213.     public delegate void TreeDestroyCountFunc (Gtk.TreeView tree_view, Gtk.TreePath path, int children);
  3214.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3215. gtk+-2.0.vapi:7506.2-7506.40: error: `Gtk' already contains a definition for `TreeIterCompareFunc'
  3216.     public delegate int TreeIterCompareFunc (Gtk.TreeModel model, Gtk.TreeIter a, Gtk.TreeIter b);
  3217.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3218. gtk+-3.0.vapi:7488.2-7488.40: note: previous definition of `TreeIterCompareFunc' was here
  3219.     public delegate int TreeIterCompareFunc (Gtk.TreeModel model, Gtk.TreeIter a, Gtk.TreeIter b);
  3220.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3221. gtk+-2.0.vapi:7508.2-7508.47: error: `Gtk' already contains a definition for `TreeModelFilterModifyFunc'
  3222.     public delegate void TreeModelFilterModifyFunc (Gtk.TreeModel model, Gtk.TreeIter iter, GLib.Value value, int column);
  3223.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3224. gtk+-3.0.vapi:7490.2-7490.47: note: previous definition of `TreeModelFilterModifyFunc' was here
  3225.     public delegate void TreeModelFilterModifyFunc (Gtk.TreeModel model, Gtk.TreeIter iter, GLib.Value value, int column);
  3226.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3227. gtk+-2.0.vapi:7510.2-7510.48: error: `Gtk' already contains a definition for `TreeModelFilterVisibleFunc'
  3228.     public delegate bool TreeModelFilterVisibleFunc (Gtk.TreeModel model, Gtk.TreeIter iter);
  3229.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3230. gtk+-3.0.vapi:7492.2-7492.48: note: previous definition of `TreeModelFilterVisibleFunc' was here
  3231.     public delegate bool TreeModelFilterVisibleFunc (Gtk.TreeModel model, Gtk.TreeIter iter);
  3232.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3233. gtk+-2.0.vapi:7512.2-7512.42: error: `Gtk' already contains a definition for `TreeModelForeachFunc'
  3234.     public delegate bool TreeModelForeachFunc (Gtk.TreeModel model, Gtk.TreePath path, Gtk.TreeIter iter);
  3235.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3236. gtk+-3.0.vapi:7494.2-7494.42: note: previous definition of `TreeModelForeachFunc' was here
  3237.     public delegate bool TreeModelForeachFunc (Gtk.TreeModel model, Gtk.TreePath path, Gtk.TreeIter iter);
  3238.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3239. gtk+-2.0.vapi:7514.2-7514.46: error: `Gtk' already contains a definition for `TreeSelectionForeachFunc'
  3240.     public delegate void TreeSelectionForeachFunc (Gtk.TreeModel model, Gtk.TreePath path, Gtk.TreeIter iter);
  3241.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3242. gtk+-3.0.vapi:7496.2-7496.46: note: previous definition of `TreeSelectionForeachFunc' was here
  3243.     public delegate void TreeSelectionForeachFunc (Gtk.TreeModel model, Gtk.TreePath path, Gtk.TreeIter iter);
  3244.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3245. gtk+-2.0.vapi:7516.2-7516.39: error: `Gtk' already contains a definition for `TreeSelectionFunc'
  3246.     public delegate bool TreeSelectionFunc (Gtk.TreeSelection selection, Gtk.TreeModel model, Gtk.TreePath path, bool path_currently_selected);
  3247.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3248. gtk+-3.0.vapi:7498.2-7498.39: note: previous definition of `TreeSelectionFunc' was here
  3249.     public delegate bool TreeSelectionFunc (Gtk.TreeSelection selection, Gtk.TreeModel model, Gtk.TreePath path, bool path_currently_selected);
  3250.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3251. gtk+-2.0.vapi:7518.2-7518.44: error: `Gtk' already contains a definition for `TreeViewColumnDropFunc'
  3252.     public delegate bool TreeViewColumnDropFunc (Gtk.TreeView tree_view, Gtk.TreeViewColumn column, Gtk.TreeViewColumn prev_column, Gtk.TreeViewColumn next_column);
  3253.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3254. gtk+-3.0.vapi:7500.2-7500.44: note: previous definition of `TreeViewColumnDropFunc' was here
  3255.     public delegate bool TreeViewColumnDropFunc (Gtk.TreeView tree_view, Gtk.TreeViewColumn column, Gtk.TreeViewColumn prev_column, Gtk.TreeViewColumn next_column);
  3256.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3257. gtk+-2.0.vapi:7520.2-7520.41: error: `Gtk' already contains a definition for `TreeViewMappingFunc'
  3258.     public delegate void TreeViewMappingFunc (Gtk.TreeView tree_view, Gtk.TreePath path);
  3259.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3260. gtk+-3.0.vapi:7502.2-7502.41: note: previous definition of `TreeViewMappingFunc' was here
  3261.     public delegate void TreeViewMappingFunc (Gtk.TreeView tree_view, Gtk.TreePath path);
  3262.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3263. gtk+-2.0.vapi:7522.2-7522.46: error: `Gtk' already contains a definition for `TreeViewRowSeparatorFunc'
  3264.     public delegate bool TreeViewRowSeparatorFunc (Gtk.TreeModel model, Gtk.TreeIter iter);
  3265.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3266. gtk+-3.0.vapi:7504.2-7504.46: note: previous definition of `TreeViewRowSeparatorFunc' was here
  3267.     public delegate bool TreeViewRowSeparatorFunc (Gtk.TreeModel model, Gtk.TreeIter iter);
  3268.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3269. gtk+-2.0.vapi:7524.2-7524.45: error: `Gtk' already contains a definition for `TreeViewSearchEqualFunc'
  3270.     public delegate bool TreeViewSearchEqualFunc (Gtk.TreeModel model, int column, string key, Gtk.TreeIter iter);
  3271.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3272. gtk+-3.0.vapi:7506.2-7506.45: note: previous definition of `TreeViewSearchEqualFunc' was here
  3273.     public delegate bool TreeViewSearchEqualFunc (Gtk.TreeModel model, int column, string key, Gtk.TreeIter iter);
  3274.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3275. gtk+-2.0.vapi:7526.2-7526.48: error: `Gtk' already contains a definition for `TreeViewSearchPositionFunc'
  3276.     public delegate void TreeViewSearchPositionFunc (Gtk.TreeView tree_view, Gtk.Widget search_dialog);
  3277.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3278. gtk+-3.0.vapi:7508.2-7508.48: note: previous definition of `TreeViewSearchPositionFunc' was here
  3279.     public delegate void TreeViewSearchPositionFunc (Gtk.TreeView tree_view, Gtk.Widget search_dialog);
  3280.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3281. gtk+-2.0.vapi:6448.2-6448.23: error: `Gtk' already contains a definition for `AccelFlags'
  3282.     public enum AccelFlags {
  3283.     ^^^^^^^^^^^^^^^^^^^^^^
  3284. gtk+-3.0.vapi:6538.2-6538.23: note: previous definition of `AccelFlags' was here
  3285.     public enum AccelFlags {
  3286.     ^^^^^^^^^^^^^^^^^^^^^^
  3287. gtk+-2.0.vapi:6483.2-6483.27: error: `Gtk' already contains a definition for `ArrowPlacement'
  3288.     public enum ArrowPlacement {
  3289.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3290. gtk+-3.0.vapi:6565.2-6565.27: note: previous definition of `ArrowPlacement' was here
  3291.     public enum ArrowPlacement {
  3292.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3293. gtk+-2.0.vapi:6489.2-6489.22: error: `Gtk' already contains a definition for `ArrowType'
  3294.     public enum ArrowType {
  3295.     ^^^^^^^^^^^^^^^^^^^^^
  3296. gtk+-3.0.vapi:6571.2-6571.22: note: previous definition of `ArrowType' was here
  3297.     public enum ArrowType {
  3298.     ^^^^^^^^^^^^^^^^^^^^^
  3299. gtk+-2.0.vapi:6497.2-6497.30: error: `Gtk' already contains a definition for `AssistantPageType'
  3300.     public enum AssistantPageType {
  3301.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3302. gtk+-3.0.vapi:6579.2-6579.30: note: previous definition of `AssistantPageType' was here
  3303.     public enum AssistantPageType {
  3304.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3305. gtk+-2.0.vapi:6506.2-6506.26: error: `Gtk' already contains a definition for `AttachOptions'
  3306.     public enum AttachOptions {
  3307.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3308. gtk+-3.0.vapi:6589.2-6589.26: note: previous definition of `AttachOptions' was here
  3309.     public enum AttachOptions {
  3310.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3311. gtk+-2.0.vapi:6520.2-6520.27: error: `Gtk' already contains a definition for `ButtonBoxStyle'
  3312.     public enum ButtonBoxStyle {
  3313.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3314. gtk+-3.0.vapi:6608.2-6608.27: note: previous definition of `ButtonBoxStyle' was here
  3315.     public enum ButtonBoxStyle {
  3316.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3317. gtk+-2.0.vapi:6529.2-6529.24: error: `Gtk' already contains a definition for `ButtonsType'
  3318.     public enum ButtonsType {
  3319.     ^^^^^^^^^^^^^^^^^^^^^^^
  3320. gtk+-3.0.vapi:6616.2-6616.24: note: previous definition of `ButtonsType' was here
  3321.     public enum ButtonsType {
  3322.     ^^^^^^^^^^^^^^^^^^^^^^^
  3323. gtk+-2.0.vapi:6575.2-6575.35: error: `Gtk' already contains a definition for `CalendarDisplayOptions'
  3324.     public enum CalendarDisplayOptions {
  3325.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3326. gtk+-3.0.vapi:6626.2-6626.35: note: previous definition of `CalendarDisplayOptions' was here
  3327.     public enum CalendarDisplayOptions {
  3328.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3329. gtk+-2.0.vapi:6584.2-6584.34: error: `Gtk' already contains a definition for `CellRendererAccelMode'
  3330.     public enum CellRendererAccelMode {
  3331.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3332. gtk+-3.0.vapi:6634.2-6634.34: note: previous definition of `CellRendererAccelMode' was here
  3333.     public enum CellRendererAccelMode {
  3334.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3335. gtk+-2.0.vapi:6589.2-6589.29: error: `Gtk' already contains a definition for `CellRendererMode'
  3336.     public enum CellRendererMode {
  3337.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3338. gtk+-3.0.vapi:6639.2-6639.29: note: previous definition of `CellRendererMode' was here
  3339.     public enum CellRendererMode {
  3340.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3341. gtk+-2.0.vapi:6596.2-6596.30: error: `Gtk' already contains a definition for `CellRendererState'
  3342.     public enum CellRendererState {
  3343.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3344. gtk+-3.0.vapi:6646.2-6646.30: note: previous definition of `CellRendererState' was here
  3345.     public enum CellRendererState {
  3346.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3347. gtk+-2.0.vapi:6612.2-6612.23: error: `Gtk' already contains a definition for `CornerType'
  3348.     public enum CornerType {
  3349.     ^^^^^^^^^^^^^^^^^^^^^^
  3350. gtk+-3.0.vapi:6656.2-6656.23: note: previous definition of `CornerType' was here
  3351.     public enum CornerType {
  3352.     ^^^^^^^^^^^^^^^^^^^^^^
  3353. gtk+-2.0.vapi:6626.2-6626.22: error: `Gtk' already contains a definition for `DebugFlag'
  3354.     public enum DebugFlag {
  3355.     ^^^^^^^^^^^^^^^^^^^^^
  3356. gtk+-3.0.vapi:6684.2-6684.22: note: previous definition of `DebugFlag' was here
  3357.     public enum DebugFlag {
  3358.     ^^^^^^^^^^^^^^^^^^^^^
  3359. gtk+-2.0.vapi:6641.2-6641.23: error: `Gtk' already contains a definition for `DeleteType'
  3360.     public enum DeleteType {
  3361.     ^^^^^^^^^^^^^^^^^^^^^^
  3362. gtk+-3.0.vapi:6700.2-6700.23: note: previous definition of `DeleteType' was here
  3363.     public enum DeleteType {
  3364.     ^^^^^^^^^^^^^^^^^^^^^^
  3365. gtk+-2.0.vapi:6653.2-6653.25: error: `Gtk' already contains a definition for `DestDefaults'
  3366.     public enum DestDefaults {
  3367.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3368. gtk+-3.0.vapi:6712.2-6712.25: note: previous definition of `DestDefaults' was here
  3369.     public enum DestDefaults {
  3370.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3371. gtk+-2.0.vapi:6661.2-6661.24: error: `Gtk' already contains a definition for `DialogFlags'
  3372.     public enum DialogFlags {
  3373.     ^^^^^^^^^^^^^^^^^^^^^^^
  3374. gtk+-3.0.vapi:6720.2-6720.24: note: previous definition of `DialogFlags' was here
  3375.     public enum DialogFlags {
  3376.     ^^^^^^^^^^^^^^^^^^^^^^^
  3377. gtk+-2.0.vapi:6667.2-6667.26: error: `Gtk' already contains a definition for `DirectionType'
  3378.     public enum DirectionType {
  3379.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3380. gtk+-3.0.vapi:6725.2-6725.26: note: previous definition of `DirectionType' was here
  3381.     public enum DirectionType {
  3382.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3383. gtk+-2.0.vapi:6676.2-6676.23: error: `Gtk' already contains a definition for `DragResult'
  3384.     public enum DragResult {
  3385.     ^^^^^^^^^^^^^^^^^^^^^^
  3386. gtk+-3.0.vapi:6734.2-6734.23: note: previous definition of `DragResult' was here
  3387.     public enum DragResult {
  3388.     ^^^^^^^^^^^^^^^^^^^^^^
  3389. gtk+-2.0.vapi:6685.2-6685.30: error: `Gtk' already contains a definition for `EntryIconPosition'
  3390.     public enum EntryIconPosition {
  3391.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3392. gtk+-3.0.vapi:6743.2-6743.30: note: previous definition of `EntryIconPosition' was here
  3393.     public enum EntryIconPosition {
  3394.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3395. gtk+-2.0.vapi:6690.2-6690.26: error: `Gtk' already contains a definition for `ExpanderStyle'
  3396.     public enum ExpanderStyle {
  3397.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3398. gtk+-3.0.vapi:6748.2-6748.26: note: previous definition of `ExpanderStyle' was here
  3399.     public enum ExpanderStyle {
  3400.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3401. gtk+-2.0.vapi:6697.2-6697.30: error: `Gtk' already contains a definition for `FileChooserAction'
  3402.     public enum FileChooserAction {
  3403.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3404. gtk+-3.0.vapi:6755.2-6755.30: note: previous definition of `FileChooserAction' was here
  3405.     public enum FileChooserAction {
  3406.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3407. gtk+-2.0.vapi:6704.2-6704.36: error: `Gtk' already contains a definition for `FileChooserConfirmation'
  3408.     public enum FileChooserConfirmation {
  3409.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3410. gtk+-3.0.vapi:6762.2-6762.36: note: previous definition of `FileChooserConfirmation' was here
  3411.     public enum FileChooserConfirmation {
  3412.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3413. gtk+-2.0.vapi:6710.2-6710.29: error: `Gtk' already contains a definition for `FileChooserError'
  3414.     public enum FileChooserError {
  3415.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3416. gtk+-3.0.vapi:6768.2-6768.29: note: previous definition of `FileChooserError' was here
  3417.     public enum FileChooserError {
  3418.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3419. gtk+-2.0.vapi:6718.2-6718.28: error: `Gtk' already contains a definition for `FileFilterFlags'
  3420.     public enum FileFilterFlags {
  3421.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3422. gtk+-3.0.vapi:6776.2-6776.28: note: previous definition of `FileFilterFlags' was here
  3423.     public enum FileFilterFlags {
  3424.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3425. gtk+-2.0.vapi:6725.2-6725.27: error: `Gtk' already contains a definition for `IMPreeditStyle'
  3426.     public enum IMPreeditStyle {
  3427.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3428. gtk+-3.0.vapi:6783.2-6783.27: note: previous definition of `IMPreeditStyle' was here
  3429.     public enum IMPreeditStyle {
  3430.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3431. gtk+-2.0.vapi:6731.2-6731.26: error: `Gtk' already contains a definition for `IMStatusStyle'
  3432.     public enum IMStatusStyle {
  3433.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3434. gtk+-3.0.vapi:6789.2-6789.26: note: previous definition of `IMStatusStyle' was here
  3435.     public enum IMStatusStyle {
  3436.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3437. gtk+-2.0.vapi:6738.2-6738.28: error: `Gtk' already contains a definition for `IconLookupFlags'
  3438.     public enum IconLookupFlags {
  3439.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3440. gtk+-3.0.vapi:6796.2-6796.28: note: previous definition of `IconLookupFlags' was here
  3441.     public enum IconLookupFlags {
  3442.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3443. gtk+-2.0.vapi:6746.2-6746.21: error: `Gtk' already contains a definition for `IconSize'
  3444.     public enum IconSize {
  3445.     ^^^^^^^^^^^^^^^^^^^^
  3446. gtk+-3.0.vapi:6804.2-6804.21: note: previous definition of `IconSize' was here
  3447.     public enum IconSize {
  3448.     ^^^^^^^^^^^^^^^^^^^^
  3449. gtk+-2.0.vapi:6756.2-6756.27: error: `Gtk' already contains a definition for `IconThemeError'
  3450.     public enum IconThemeError {
  3451.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3452. gtk+-3.0.vapi:6814.2-6814.27: note: previous definition of `IconThemeError' was here
  3453.     public enum IconThemeError {
  3454.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3455. gtk+-2.0.vapi:6761.2-6761.33: error: `Gtk' already contains a definition for `IconViewDropPosition'
  3456.     public enum IconViewDropPosition {
  3457.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3458. gtk+-3.0.vapi:6819.2-6819.33: note: previous definition of `IconViewDropPosition' was here
  3459.     public enum IconViewDropPosition {
  3460.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3461. gtk+-2.0.vapi:6770.2-6770.22: error: `Gtk' already contains a definition for `ImageType'
  3462.     public enum ImageType {
  3463.     ^^^^^^^^^^^^^^^^^^^^^
  3464. gtk+-3.0.vapi:6828.2-6828.22: note: previous definition of `ImageType' was here
  3465.     public enum ImageType {
  3466.     ^^^^^^^^^^^^^^^^^^^^^
  3467. gtk+-2.0.vapi:6782.2-6782.26: error: `Gtk' already contains a definition for `Justification'
  3468.     public enum Justification {
  3469.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3470. gtk+-3.0.vapi:6851.2-6851.26: note: previous definition of `Justification' was here
  3471.     public enum Justification {
  3472.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3473. gtk+-2.0.vapi:6798.2-6798.30: error: `Gtk' already contains a definition for `MenuDirectionType'
  3474.     public enum MenuDirectionType {
  3475.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3476. gtk+-3.0.vapi:6870.2-6870.30: note: previous definition of `MenuDirectionType' was here
  3477.     public enum MenuDirectionType {
  3478.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3479. gtk+-2.0.vapi:6805.2-6805.24: error: `Gtk' already contains a definition for `MessageType'
  3480.     public enum MessageType {
  3481.     ^^^^^^^^^^^^^^^^^^^^^^^
  3482. gtk+-3.0.vapi:6877.2-6877.24: note: previous definition of `MessageType' was here
  3483.     public enum MessageType {
  3484.     ^^^^^^^^^^^^^^^^^^^^^^^
  3485. gtk+-2.0.vapi:6819.2-6819.25: error: `Gtk' already contains a definition for `MovementStep'
  3486.     public enum MovementStep {
  3487.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3488. gtk+-3.0.vapi:6885.2-6885.25: note: previous definition of `MovementStep' was here
  3489.     public enum MovementStep {
  3490.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3491. gtk+-2.0.vapi:6832.2-6832.24: error: `Gtk' already contains a definition for `NotebookTab'
  3492.     public enum NotebookTab {
  3493.     ^^^^^^^^^^^^^^^^^^^^^^^
  3494. gtk+-3.0.vapi:6898.2-6898.24: note: previous definition of `NotebookTab' was here
  3495.     public enum NotebookTab {
  3496.     ^^^^^^^^^^^^^^^^^^^^^^^
  3497. gtk+-2.0.vapi:6837.2-6837.27: error: `Gtk' already contains a definition for `NumberUpLayout'
  3498.     public enum NumberUpLayout {
  3499.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3500. gtk+-3.0.vapi:6903.2-6903.27: note: previous definition of `NumberUpLayout' was here
  3501.     public enum NumberUpLayout {
  3502.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3503. gtk+-2.0.vapi:6856.2-6856.24: error: `Gtk' already contains a definition for `Orientation'
  3504.     public enum Orientation {
  3505.     ^^^^^^^^^^^^^^^^^^^^^^^
  3506. gtk+-3.0.vapi:6914.2-6914.24: note: previous definition of `Orientation' was here
  3507.     public enum Orientation {
  3508.     ^^^^^^^^^^^^^^^^^^^^^^^
  3509. gtk+-2.0.vapi:6861.2-6861.26: error: `Gtk' already contains a definition for `PackDirection'
  3510.     public enum PackDirection {
  3511.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3512. gtk+-3.0.vapi:6919.2-6919.26: note: previous definition of `PackDirection' was here
  3513.     public enum PackDirection {
  3514.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3515. gtk+-2.0.vapi:6868.2-6868.21: error: `Gtk' already contains a definition for `PackType'
  3516.     public enum PackType {
  3517.     ^^^^^^^^^^^^^^^^^^^^
  3518. gtk+-3.0.vapi:6926.2-6926.21: note: previous definition of `PackType' was here
  3519.     public enum PackType {
  3520.     ^^^^^^^^^^^^^^^^^^^^
  3521. gtk+-2.0.vapi:6873.2-6873.28: error: `Gtk' already contains a definition for `PageOrientation'
  3522.     public enum PageOrientation {
  3523.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3524. gtk+-3.0.vapi:6931.2-6931.28: note: previous definition of `PageOrientation' was here
  3525.     public enum PageOrientation {
  3526.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3527. gtk+-2.0.vapi:6880.2-6880.20: error: `Gtk' already contains a definition for `PageSet'
  3528.     public enum PageSet {
  3529.     ^^^^^^^^^^^^^^^^^^^
  3530. gtk+-3.0.vapi:6938.2-6938.20: note: previous definition of `PageSet' was here
  3531.     public enum PageSet {
  3532.     ^^^^^^^^^^^^^^^^^^^
  3533. gtk+-2.0.vapi:6886.2-6886.29: error: `Gtk' already contains a definition for `PathPriorityType'
  3534.     public enum PathPriorityType {
  3535.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3536. gtk+-3.0.vapi:6944.2-6944.29: note: previous definition of `PathPriorityType' was here
  3537.     public enum PathPriorityType {
  3538.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3539. gtk+-2.0.vapi:6895.2-6895.21: error: `Gtk' already contains a definition for `PathType'
  3540.     public enum PathType {
  3541.     ^^^^^^^^^^^^^^^^^^^^
  3542. gtk+-3.0.vapi:6953.2-6953.21: note: previous definition of `PathType' was here
  3543.     public enum PathType {
  3544.     ^^^^^^^^^^^^^^^^^^^^
  3545. gtk+-2.0.vapi:6901.2-6901.23: error: `Gtk' already contains a definition for `PolicyType'
  3546.     public enum PolicyType {
  3547.     ^^^^^^^^^^^^^^^^^^^^^^
  3548. gtk+-3.0.vapi:6959.2-6959.23: note: previous definition of `PolicyType' was here
  3549.     public enum PolicyType {
  3550.     ^^^^^^^^^^^^^^^^^^^^^^
  3551. gtk+-2.0.vapi:6907.2-6907.25: error: `Gtk' already contains a definition for `PositionType'
  3552.     public enum PositionType {
  3553.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3554. gtk+-3.0.vapi:6965.2-6965.25: note: previous definition of `PositionType' was here
  3555.     public enum PositionType {
  3556.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3557. gtk+-2.0.vapi:6919.2-6919.24: error: `Gtk' already contains a definition for `PrintDuplex'
  3558.     public enum PrintDuplex {
  3559.     ^^^^^^^^^^^^^^^^^^^^^^^
  3560. gtk+-3.0.vapi:6972.2-6972.24: note: previous definition of `PrintDuplex' was here
  3561.     public enum PrintDuplex {
  3562.     ^^^^^^^^^^^^^^^^^^^^^^^
  3563. gtk+-2.0.vapi:6925.2-6925.23: error: `Gtk' already contains a definition for `PrintError'
  3564.     public enum PrintError {
  3565.     ^^^^^^^^^^^^^^^^^^^^^^
  3566. gtk+-3.0.vapi:6978.2-6978.23: note: previous definition of `PrintError' was here
  3567.     public enum PrintError {
  3568.     ^^^^^^^^^^^^^^^^^^^^^^
  3569. gtk+-2.0.vapi:6932.2-6932.33: error: `Gtk' already contains a definition for `PrintOperationAction'
  3570.     public enum PrintOperationAction {
  3571.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3572. gtk+-3.0.vapi:6985.2-6985.33: note: previous definition of `PrintOperationAction' was here
  3573.     public enum PrintOperationAction {
  3574.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3575. gtk+-2.0.vapi:6939.2-6939.33: error: `Gtk' already contains a definition for `PrintOperationResult'
  3576.     public enum PrintOperationResult {
  3577.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3578. gtk+-3.0.vapi:6992.2-6992.33: note: previous definition of `PrintOperationResult' was here
  3579.     public enum PrintOperationResult {
  3580.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3581. gtk+-2.0.vapi:6946.2-6946.23: error: `Gtk' already contains a definition for `PrintPages'
  3582.     public enum PrintPages {
  3583.     ^^^^^^^^^^^^^^^^^^^^^^
  3584. gtk+-3.0.vapi:6999.2-6999.23: note: previous definition of `PrintPages' was here
  3585.     public enum PrintPages {
  3586.     ^^^^^^^^^^^^^^^^^^^^^^
  3587. gtk+-2.0.vapi:6953.2-6953.25: error: `Gtk' already contains a definition for `PrintQuality'
  3588.     public enum PrintQuality {
  3589.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3590. gtk+-3.0.vapi:7006.2-7006.25: note: previous definition of `PrintQuality' was here
  3591.     public enum PrintQuality {
  3592.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3593. gtk+-2.0.vapi:6960.2-6960.24: error: `Gtk' already contains a definition for `PrintStatus'
  3594.     public enum PrintStatus {
  3595.     ^^^^^^^^^^^^^^^^^^^^^^^
  3596. gtk+-3.0.vapi:7013.2-7013.24: note: previous definition of `PrintStatus' was here
  3597.     public enum PrintStatus {
  3598.     ^^^^^^^^^^^^^^^^^^^^^^^
  3599. gtk+-2.0.vapi:7002.2-7002.20: error: `Gtk' already contains a definition for `RcFlags'
  3600.     public enum RcFlags {
  3601.     ^^^^^^^^^^^^^^^^^^^
  3602. gtk+-3.0.vapi:7026.2-7026.20: note: previous definition of `RcFlags' was here
  3603.     public enum RcFlags {
  3604.     ^^^^^^^^^^^^^^^^^^^
  3605. gtk+-2.0.vapi:7009.2-7009.24: error: `Gtk' already contains a definition for `RcTokenType'
  3606.     public enum RcTokenType {
  3607.     ^^^^^^^^^^^^^^^^^^^^^^^
  3608. gtk+-3.0.vapi:7033.2-7033.24: note: previous definition of `RcTokenType' was here
  3609.     public enum RcTokenType {
  3610.     ^^^^^^^^^^^^^^^^^^^^^^^
  3611. gtk+-2.0.vapi:7052.2-7052.31: error: `Gtk' already contains a definition for `RecentChooserError'
  3612.     public enum RecentChooserError {
  3613.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3614. gtk+-3.0.vapi:7076.2-7076.31: note: previous definition of `RecentChooserError' was here
  3615.     public enum RecentChooserError {
  3616.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3617. gtk+-2.0.vapi:7058.2-7058.30: error: `Gtk' already contains a definition for `RecentFilterFlags'
  3618.     public enum RecentFilterFlags {
  3619.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3620. gtk+-3.0.vapi:7082.2-7082.30: note: previous definition of `RecentFilterFlags' was here
  3621.     public enum RecentFilterFlags {
  3622.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3623. gtk+-2.0.vapi:7067.2-7067.31: error: `Gtk' already contains a definition for `RecentManagerError'
  3624.     public enum RecentManagerError {
  3625.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3626. gtk+-3.0.vapi:7091.2-7091.31: note: previous definition of `RecentManagerError' was here
  3627.     public enum RecentManagerError {
  3628.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3629. gtk+-2.0.vapi:7077.2-7077.27: error: `Gtk' already contains a definition for `RecentSortType'
  3630.     public enum RecentSortType {
  3631.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3632. gtk+-3.0.vapi:7101.2-7101.27: note: previous definition of `RecentSortType' was here
  3633.     public enum RecentSortType {
  3634.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3635. gtk+-2.0.vapi:7084.2-7084.24: error: `Gtk' already contains a definition for `ReliefStyle'
  3636.     public enum ReliefStyle {
  3637.     ^^^^^^^^^^^^^^^^^^^^^^^
  3638. gtk+-3.0.vapi:7118.2-7118.24: note: previous definition of `ReliefStyle' was here
  3639.     public enum ReliefStyle {
  3640.     ^^^^^^^^^^^^^^^^^^^^^^^
  3641. gtk+-2.0.vapi:7090.2-7090.23: error: `Gtk' already contains a definition for `ResizeMode'
  3642.     public enum ResizeMode {
  3643.     ^^^^^^^^^^^^^^^^^^^^^^
  3644. gtk+-3.0.vapi:7124.2-7124.23: note: previous definition of `ResizeMode' was here
  3645.     public enum ResizeMode {
  3646.     ^^^^^^^^^^^^^^^^^^^^^^
  3647. gtk+-2.0.vapi:7096.2-7096.25: error: `Gtk' already contains a definition for `ResponseType'
  3648.     public enum ResponseType {
  3649.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3650. gtk+-3.0.vapi:7130.2-7130.25: note: previous definition of `ResponseType' was here
  3651.     public enum ResponseType {
  3652.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3653. gtk+-2.0.vapi:7110.2-7110.23: error: `Gtk' already contains a definition for `ScrollStep'
  3654.     public enum ScrollStep {
  3655.     ^^^^^^^^^^^^^^^^^^^^^^
  3656. gtk+-3.0.vapi:7144.2-7144.23: note: previous definition of `ScrollStep' was here
  3657.     public enum ScrollStep {
  3658.     ^^^^^^^^^^^^^^^^^^^^^^
  3659. gtk+-2.0.vapi:7119.2-7119.23: error: `Gtk' already contains a definition for `ScrollType'
  3660.     public enum ScrollType {
  3661.     ^^^^^^^^^^^^^^^^^^^^^^
  3662. gtk+-3.0.vapi:7153.2-7153.23: note: previous definition of `ScrollType' was here
  3663.     public enum ScrollType {
  3664.     ^^^^^^^^^^^^^^^^^^^^^^
  3665. gtk+-2.0.vapi:7138.2-7138.26: error: `Gtk' already contains a definition for `SelectionMode'
  3666.     public enum SelectionMode {
  3667.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3668. gtk+-3.0.vapi:7177.2-7177.26: note: previous definition of `SelectionMode' was here
  3669.     public enum SelectionMode {
  3670.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3671. gtk+-2.0.vapi:7146.2-7146.28: error: `Gtk' already contains a definition for `SensitivityType'
  3672.     public enum SensitivityType {
  3673.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3674. gtk+-3.0.vapi:7184.2-7184.28: note: previous definition of `SensitivityType' was here
  3675.     public enum SensitivityType {
  3676.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3677. gtk+-2.0.vapi:7152.2-7152.23: error: `Gtk' already contains a definition for `ShadowType'
  3678.     public enum ShadowType {
  3679.     ^^^^^^^^^^^^^^^^^^^^^^
  3680. gtk+-3.0.vapi:7190.2-7190.23: note: previous definition of `ShadowType' was here
  3681.     public enum ShadowType {
  3682.     ^^^^^^^^^^^^^^^^^^^^^^
  3683. gtk+-2.0.vapi:7177.2-7177.26: error: `Gtk' already contains a definition for `SizeGroupMode'
  3684.     public enum SizeGroupMode {
  3685.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3686. gtk+-3.0.vapi:7198.2-7198.26: note: previous definition of `SizeGroupMode' was here
  3687.     public enum SizeGroupMode {
  3688.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3689. gtk+-2.0.vapi:7184.2-7184.23: error: `Gtk' already contains a definition for `SortColumn'
  3690.     public enum SortColumn {
  3691.     ^^^^^^^^^^^^^^^^^^^^^^
  3692. gtk+-3.0.vapi:7211.2-7211.23: note: previous definition of `SortColumn' was here
  3693.     public enum SortColumn {
  3694.     ^^^^^^^^^^^^^^^^^^^^^^
  3695. gtk+-2.0.vapi:7191.2-7191.21: error: `Gtk' already contains a definition for `SortType'
  3696.     public enum SortType {
  3697.     ^^^^^^^^^^^^^^^^^^^^
  3698. gtk+-3.0.vapi:7218.2-7218.21: note: previous definition of `SortType' was here
  3699.     public enum SortType {
  3700.     ^^^^^^^^^^^^^^^^^^^^
  3701. gtk+-2.0.vapi:7196.2-7196.35: error: `Gtk' already contains a definition for `SpinButtonUpdatePolicy'
  3702.     public enum SpinButtonUpdatePolicy {
  3703.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3704. gtk+-3.0.vapi:7223.2-7223.35: note: previous definition of `SpinButtonUpdatePolicy' was here
  3705.     public enum SpinButtonUpdatePolicy {
  3706.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3707. gtk+-2.0.vapi:7201.2-7201.21: error: `Gtk' already contains a definition for `SpinType'
  3708.     public enum SpinType {
  3709.     ^^^^^^^^^^^^^^^^^^^^
  3710. gtk+-3.0.vapi:7228.2-7228.21: note: previous definition of `SpinType' was here
  3711.     public enum SpinType {
  3712.     ^^^^^^^^^^^^^^^^^^^^
  3713. gtk+-2.0.vapi:7211.2-7211.22: error: `Gtk' already contains a definition for `StateType'
  3714.     public enum StateType {
  3715.     ^^^^^^^^^^^^^^^^^^^^^
  3716. gtk+-3.0.vapi:7250.2-7250.22: note: previous definition of `StateType' was here
  3717.     public enum StateType {
  3718.     ^^^^^^^^^^^^^^^^^^^^^
  3719. gtk+-2.0.vapi:7230.2-7230.24: error: `Gtk' already contains a definition for `TargetFlags'
  3720.     public enum TargetFlags {
  3721.     ^^^^^^^^^^^^^^^^^^^^^^^
  3722. gtk+-3.0.vapi:7261.2-7261.24: note: previous definition of `TargetFlags' was here
  3723.     public enum TargetFlags {
  3724.     ^^^^^^^^^^^^^^^^^^^^^^^
  3725. gtk+-2.0.vapi:7237.2-7237.33: error: `Gtk' already contains a definition for `TextBufferTargetInfo'
  3726.     public enum TextBufferTargetInfo {
  3727.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3728. gtk+-3.0.vapi:7268.2-7268.33: note: previous definition of `TextBufferTargetInfo' was here
  3729.     public enum TextBufferTargetInfo {
  3730.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3731. gtk+-2.0.vapi:7243.2-7243.26: error: `Gtk' already contains a definition for `TextDirection'
  3732.     public enum TextDirection {
  3733.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3734. gtk+-3.0.vapi:7274.2-7274.26: note: previous definition of `TextDirection' was here
  3735.     public enum TextDirection {
  3736.     ^^^^^^^^^^^^^^^^^^^^^^^^^
  3737. gtk+-2.0.vapi:7250.2-7250.28: error: `Gtk' already contains a definition for `TextSearchFlags'
  3738.     public enum TextSearchFlags {
  3739.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3740. gtk+-3.0.vapi:7281.2-7281.28: note: previous definition of `TextSearchFlags' was here
  3741.     public enum TextSearchFlags {
  3742.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3743. gtk+-2.0.vapi:7255.2-7255.27: error: `Gtk' already contains a definition for `TextWindowType'
  3744.     public enum TextWindowType {
  3745.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3746. gtk+-3.0.vapi:7287.2-7287.27: note: previous definition of `TextWindowType' was here
  3747.     public enum TextWindowType {
  3748.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3749. gtk+-2.0.vapi:7266.2-7266.35: error: `Gtk' already contains a definition for `ToolPaletteDragTargets'
  3750.     public enum ToolPaletteDragTargets {
  3751.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3752. gtk+-3.0.vapi:7298.2-7298.35: note: previous definition of `ToolPaletteDragTargets' was here
  3753.     public enum ToolPaletteDragTargets {
  3754.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3755. gtk+-2.0.vapi:7279.2-7279.30: error: `Gtk' already contains a definition for `ToolbarSpaceStyle'
  3756.     public enum ToolbarSpaceStyle {
  3757.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3758. gtk+-3.0.vapi:7303.2-7303.30: note: previous definition of `ToolbarSpaceStyle' was here
  3759.     public enum ToolbarSpaceStyle {
  3760.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3761. gtk+-2.0.vapi:7284.2-7284.25: error: `Gtk' already contains a definition for `ToolbarStyle'
  3762.     public enum ToolbarStyle {
  3763.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3764. gtk+-3.0.vapi:7308.2-7308.25: note: previous definition of `ToolbarStyle' was here
  3765.     public enum ToolbarStyle {
  3766.     ^^^^^^^^^^^^^^^^^^^^^^^^
  3767. gtk+-2.0.vapi:7292.2-7292.27: error: `Gtk' already contains a definition for `TreeModelFlags'
  3768.     public enum TreeModelFlags {
  3769.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3770. gtk+-3.0.vapi:7316.2-7316.27: note: previous definition of `TreeModelFlags' was here
  3771.     public enum TreeModelFlags {
  3772.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3773. gtk+-2.0.vapi:7297.2-7297.33: error: `Gtk' already contains a definition for `TreeViewColumnSizing'
  3774.     public enum TreeViewColumnSizing {
  3775.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3776. gtk+-3.0.vapi:7321.2-7321.33: note: previous definition of `TreeViewColumnSizing' was here
  3777.     public enum TreeViewColumnSizing {
  3778.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3779. gtk+-2.0.vapi:7303.2-7303.33: error: `Gtk' already contains a definition for `TreeViewDropPosition'
  3780.     public enum TreeViewDropPosition {
  3781.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3782. gtk+-3.0.vapi:7327.2-7327.33: note: previous definition of `TreeViewDropPosition' was here
  3783.     public enum TreeViewDropPosition {
  3784.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3785. gtk+-2.0.vapi:7310.2-7310.30: error: `Gtk' already contains a definition for `TreeViewGridLines'
  3786.     public enum TreeViewGridLines {
  3787.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3788. gtk+-3.0.vapi:7334.2-7334.30: note: previous definition of `TreeViewGridLines' was here
  3789.     public enum TreeViewGridLines {
  3790.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3791. gtk+-2.0.vapi:7323.2-7323.30: error: `Gtk' already contains a definition for `UIManagerItemType'
  3792.     public enum UIManagerItemType {
  3793.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3794. gtk+-3.0.vapi:7342.2-7342.30: note: previous definition of `UIManagerItemType' was here
  3795.     public enum UIManagerItemType {
  3796.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3797. gtk+-2.0.vapi:7337.2-7337.17: error: `Gtk' already contains a definition for `Unit'
  3798.     public enum Unit {
  3799.     ^^^^^^^^^^^^^^^^
  3800. gtk+-3.0.vapi:7356.2-7356.17: note: previous definition of `Unit' was here
  3801.     public enum Unit {
  3802.     ^^^^^^^^^^^^^^^^
  3803. gtk+-2.0.vapi:7379.2-7379.27: error: `Gtk' already contains a definition for `WidgetHelpType'
  3804.     public enum WidgetHelpType {
  3805.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3806. gtk+-3.0.vapi:7363.2-7363.27: note: previous definition of `WidgetHelpType' was here
  3807.     public enum WidgetHelpType {
  3808.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3809. gtk+-2.0.vapi:7384.2-7384.27: error: `Gtk' already contains a definition for `WindowPosition'
  3810.     public enum WindowPosition {
  3811.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3812. gtk+-3.0.vapi:7368.2-7368.27: note: previous definition of `WindowPosition' was here
  3813.     public enum WindowPosition {
  3814.     ^^^^^^^^^^^^^^^^^^^^^^^^^^
  3815. gtk+-2.0.vapi:7392.2-7392.23: error: `Gtk' already contains a definition for `WindowType'
  3816.     public enum WindowType {
  3817.     ^^^^^^^^^^^^^^^^^^^^^^
  3818. gtk+-3.0.vapi:7376.2-7376.23: note: previous definition of `WindowType' was here
  3819.     public enum WindowType {
  3820.     ^^^^^^^^^^^^^^^^^^^^^^
  3821. gtk+-2.0.vapi:7397.2-7397.21: error: `Gtk' already contains a definition for `WrapMode'
  3822.     public enum WrapMode {
  3823.     ^^^^^^^^^^^^^^^^^^^^
  3824. gtk+-3.0.vapi:7381.2-7381.21: note: previous definition of `WrapMode' was here
  3825.     public enum WrapMode {
  3826.     ^^^^^^^^^^^^^^^^^^^^
  3827. gtk+-2.0.vapi:7404.2-7404.32: error: `Gtk' already contains a definition for `BuilderError'
  3828.     public errordomain BuilderError {
  3829.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3830. gtk+-3.0.vapi:7388.2-7388.32: note: previous definition of `BuilderError' was here
  3831.     public errordomain BuilderError {
  3832.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3833. gtk+-2.0.vapi:7532.2-7532.29: error: `Gtk' already contains a definition for `BINARY_AGE'
  3834.     public const int BINARY_AGE;
  3835.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3836. gtk+-3.0.vapi:7510.2-7510.29: note: previous definition of `BINARY_AGE' was here
  3837.     public const int BINARY_AGE;
  3838.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3839. gtk+-2.0.vapi:7536.2-7536.30: error: `Gtk' already contains a definition for `INPUT_ERROR'
  3840.     public const int INPUT_ERROR;
  3841.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3842. gtk+-3.0.vapi:7512.2-7512.30: note: previous definition of `INPUT_ERROR' was here
  3843.     public const int INPUT_ERROR;
  3844.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3845. gtk+-2.0.vapi:7538.2-7538.32: error: `Gtk' already contains a definition for `INTERFACE_AGE'
  3846.     public const int INTERFACE_AGE;
  3847.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3848. gtk+-3.0.vapi:7514.2-7514.32: note: previous definition of `INTERFACE_AGE' was here
  3849.     public const int INTERFACE_AGE;
  3850.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3851. gtk+-2.0.vapi:7540.2-7540.32: error: `Gtk' already contains a definition for `MAJOR_VERSION'
  3852.     public const int MAJOR_VERSION;
  3853.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3854. gtk+-3.0.vapi:7516.2-7516.32: note: previous definition of `MAJOR_VERSION' was here
  3855.     public const int MAJOR_VERSION;
  3856.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3857. gtk+-2.0.vapi:7542.2-7542.34: error: `Gtk' already contains a definition for `MAX_COMPOSE_LEN'
  3858.     public const int MAX_COMPOSE_LEN;
  3859.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3860. gtk+-3.0.vapi:7518.2-7518.34: note: previous definition of `MAX_COMPOSE_LEN' was here
  3861.     public const int MAX_COMPOSE_LEN;
  3862.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3863. gtk+-2.0.vapi:7544.2-7544.32: error: `Gtk' already contains a definition for `MICRO_VERSION'
  3864.     public const int MICRO_VERSION;
  3865.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3866. gtk+-3.0.vapi:7520.2-7520.32: note: previous definition of `MICRO_VERSION' was here
  3867.     public const int MICRO_VERSION;
  3868.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3869. gtk+-2.0.vapi:7546.2-7546.32: error: `Gtk' already contains a definition for `MINOR_VERSION'
  3870.     public const int MINOR_VERSION;
  3871.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3872. gtk+-3.0.vapi:7522.2-7522.32: note: previous definition of `MINOR_VERSION' was here
  3873.     public const int MINOR_VERSION;
  3874.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3875. gtk+-2.0.vapi:7548.2-7548.35: error: `Gtk' already contains a definition for `PAPER_NAME_A3'
  3876.     public const string PAPER_NAME_A3;
  3877.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3878. gtk+-3.0.vapi:7524.2-7524.35: note: previous definition of `PAPER_NAME_A3' was here
  3879.     public const string PAPER_NAME_A3;
  3880.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3881. gtk+-2.0.vapi:7550.2-7550.35: error: `Gtk' already contains a definition for `PAPER_NAME_A4'
  3882.     public const string PAPER_NAME_A4;
  3883.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3884. gtk+-3.0.vapi:7526.2-7526.35: note: previous definition of `PAPER_NAME_A4' was here
  3885.     public const string PAPER_NAME_A4;
  3886.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3887. gtk+-2.0.vapi:7552.2-7552.35: error: `Gtk' already contains a definition for `PAPER_NAME_A5'
  3888.     public const string PAPER_NAME_A5;
  3889.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3890. gtk+-3.0.vapi:7528.2-7528.35: note: previous definition of `PAPER_NAME_A5' was here
  3891.     public const string PAPER_NAME_A5;
  3892.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3893. gtk+-2.0.vapi:7554.2-7554.35: error: `Gtk' already contains a definition for `PAPER_NAME_B5'
  3894.     public const string PAPER_NAME_B5;
  3895.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3896. gtk+-3.0.vapi:7530.2-7530.35: note: previous definition of `PAPER_NAME_B5' was here
  3897.     public const string PAPER_NAME_B5;
  3898.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3899. gtk+-2.0.vapi:7556.2-7556.42: error: `Gtk' already contains a definition for `PAPER_NAME_EXECUTIVE'
  3900.     public const string PAPER_NAME_EXECUTIVE;
  3901.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3902. gtk+-3.0.vapi:7532.2-7532.42: note: previous definition of `PAPER_NAME_EXECUTIVE' was here
  3903.     public const string PAPER_NAME_EXECUTIVE;
  3904.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3905. gtk+-2.0.vapi:7558.2-7558.38: error: `Gtk' already contains a definition for `PAPER_NAME_LEGAL'
  3906.     public const string PAPER_NAME_LEGAL;
  3907.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3908. gtk+-3.0.vapi:7534.2-7534.38: note: previous definition of `PAPER_NAME_LEGAL' was here
  3909.     public const string PAPER_NAME_LEGAL;
  3910.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3911. gtk+-2.0.vapi:7560.2-7560.39: error: `Gtk' already contains a definition for `PAPER_NAME_LETTER'
  3912.     public const string PAPER_NAME_LETTER;
  3913.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3914. gtk+-3.0.vapi:7536.2-7536.39: note: previous definition of `PAPER_NAME_LETTER' was here
  3915.     public const string PAPER_NAME_LETTER;
  3916.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3917. gtk+-2.0.vapi:7568.2-7568.33: error: `Gtk' already contains a definition for `PATH_PRIO_MASK'
  3918.     public const int PATH_PRIO_MASK;
  3919.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3920. gtk+-3.0.vapi:7538.2-7538.33: note: previous definition of `PATH_PRIO_MASK' was here
  3921.     public const int PATH_PRIO_MASK;
  3922.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3923. gtk+-2.0.vapi:7570.2-7570.44: error: `Gtk' already contains a definition for `PRINT_SETTINGS_COLLATE'
  3924.     public const string PRINT_SETTINGS_COLLATE;
  3925.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3926. gtk+-3.0.vapi:7540.2-7540.44: note: previous definition of `PRINT_SETTINGS_COLLATE' was here
  3927.     public const string PRINT_SETTINGS_COLLATE;
  3928.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3929. gtk+-2.0.vapi:7572.2-7572.51: error: `Gtk' already contains a definition for `PRINT_SETTINGS_DEFAULT_SOURCE'
  3930.     public const string PRINT_SETTINGS_DEFAULT_SOURCE;
  3931.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3932. gtk+-3.0.vapi:7542.2-7542.51: note: previous definition of `PRINT_SETTINGS_DEFAULT_SOURCE' was here
  3933.     public const string PRINT_SETTINGS_DEFAULT_SOURCE;
  3934.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3935. gtk+-2.0.vapi:7574.2-7574.43: error: `Gtk' already contains a definition for `PRINT_SETTINGS_DITHER'
  3936.     public const string PRINT_SETTINGS_DITHER;
  3937.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3938. gtk+-3.0.vapi:7544.2-7544.43: note: previous definition of `PRINT_SETTINGS_DITHER' was here
  3939.     public const string PRINT_SETTINGS_DITHER;
  3940.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3941. gtk+-2.0.vapi:7576.2-7576.43: error: `Gtk' already contains a definition for `PRINT_SETTINGS_DUPLEX'
  3942.     public const string PRINT_SETTINGS_DUPLEX;
  3943.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3944. gtk+-3.0.vapi:7546.2-7546.43: note: previous definition of `PRINT_SETTINGS_DUPLEX' was here
  3945.     public const string PRINT_SETTINGS_DUPLEX;
  3946.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3947. gtk+-2.0.vapi:7578.2-7578.47: error: `Gtk' already contains a definition for `PRINT_SETTINGS_FINISHINGS'
  3948.     public const string PRINT_SETTINGS_FINISHINGS;
  3949.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3950. gtk+-3.0.vapi:7548.2-7548.47: note: previous definition of `PRINT_SETTINGS_FINISHINGS' was here
  3951.     public const string PRINT_SETTINGS_FINISHINGS;
  3952.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3953. gtk+-2.0.vapi:7580.2-7580.47: error: `Gtk' already contains a definition for `PRINT_SETTINGS_MEDIA_TYPE'
  3954.     public const string PRINT_SETTINGS_MEDIA_TYPE;
  3955.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3956. gtk+-3.0.vapi:7550.2-7550.47: note: previous definition of `PRINT_SETTINGS_MEDIA_TYPE' was here
  3957.     public const string PRINT_SETTINGS_MEDIA_TYPE;
  3958.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3959. gtk+-2.0.vapi:7582.2-7582.46: error: `Gtk' already contains a definition for `PRINT_SETTINGS_NUMBER_UP'
  3960.     public const string PRINT_SETTINGS_NUMBER_UP;
  3961.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3962. gtk+-3.0.vapi:7552.2-7552.46: note: previous definition of `PRINT_SETTINGS_NUMBER_UP' was here
  3963.     public const string PRINT_SETTINGS_NUMBER_UP;
  3964.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3965. gtk+-2.0.vapi:7584.2-7584.53: error: `Gtk' already contains a definition for `PRINT_SETTINGS_NUMBER_UP_LAYOUT'
  3966.     public const string PRINT_SETTINGS_NUMBER_UP_LAYOUT;
  3967.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3968. gtk+-3.0.vapi:7554.2-7554.53: note: previous definition of `PRINT_SETTINGS_NUMBER_UP_LAYOUT' was here
  3969.     public const string PRINT_SETTINGS_NUMBER_UP_LAYOUT;
  3970.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3971. gtk+-2.0.vapi:7586.2-7586.45: error: `Gtk' already contains a definition for `PRINT_SETTINGS_N_COPIES'
  3972.     public const string PRINT_SETTINGS_N_COPIES;
  3973.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3974. gtk+-3.0.vapi:7556.2-7556.45: note: previous definition of `PRINT_SETTINGS_N_COPIES' was here
  3975.     public const string PRINT_SETTINGS_N_COPIES;
  3976.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3977. gtk+-2.0.vapi:7588.2-7588.48: error: `Gtk' already contains a definition for `PRINT_SETTINGS_ORIENTATION'
  3978.     public const string PRINT_SETTINGS_ORIENTATION;
  3979.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3980. gtk+-3.0.vapi:7558.2-7558.48: note: previous definition of `PRINT_SETTINGS_ORIENTATION' was here
  3981.     public const string PRINT_SETTINGS_ORIENTATION;
  3982.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3983. gtk+-2.0.vapi:7590.2-7590.47: error: `Gtk' already contains a definition for `PRINT_SETTINGS_OUTPUT_BIN'
  3984.     public const string PRINT_SETTINGS_OUTPUT_BIN;
  3985.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3986. gtk+-3.0.vapi:7560.2-7560.47: note: previous definition of `PRINT_SETTINGS_OUTPUT_BIN' was here
  3987.     public const string PRINT_SETTINGS_OUTPUT_BIN;
  3988.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3989. gtk+-2.0.vapi:7592.2-7592.55: error: `Gtk' already contains a definition for `PRINT_SETTINGS_OUTPUT_FILE_FORMAT'
  3990.     public const string PRINT_SETTINGS_OUTPUT_FILE_FORMAT;
  3991.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3992. gtk+-3.0.vapi:7562.2-7562.55: note: previous definition of `PRINT_SETTINGS_OUTPUT_FILE_FORMAT' was here
  3993.     public const string PRINT_SETTINGS_OUTPUT_FILE_FORMAT;
  3994.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3995. gtk+-2.0.vapi:7594.2-7594.47: error: `Gtk' already contains a definition for `PRINT_SETTINGS_OUTPUT_URI'
  3996.     public const string PRINT_SETTINGS_OUTPUT_URI;
  3997.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3998. gtk+-3.0.vapi:7564.2-7564.47: note: previous definition of `PRINT_SETTINGS_OUTPUT_URI' was here
  3999.     public const string PRINT_SETTINGS_OUTPUT_URI;
  4000.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4001. gtk+-2.0.vapi:7596.2-7596.48: error: `Gtk' already contains a definition for `PRINT_SETTINGS_PAGE_RANGES'
  4002.     public const string PRINT_SETTINGS_PAGE_RANGES;
  4003.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4004. gtk+-3.0.vapi:7566.2-7566.48: note: previous definition of `PRINT_SETTINGS_PAGE_RANGES' was here
  4005.     public const string PRINT_SETTINGS_PAGE_RANGES;
  4006.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4007. gtk+-2.0.vapi:7598.2-7598.45: error: `Gtk' already contains a definition for `PRINT_SETTINGS_PAGE_SET'
  4008.     public const string PRINT_SETTINGS_PAGE_SET;
  4009.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4010. gtk+-3.0.vapi:7568.2-7568.45: note: previous definition of `PRINT_SETTINGS_PAGE_SET' was here
  4011.     public const string PRINT_SETTINGS_PAGE_SET;
  4012.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4013. gtk+-2.0.vapi:7600.2-7600.49: error: `Gtk' already contains a definition for `PRINT_SETTINGS_PAPER_FORMAT'
  4014.     public const string PRINT_SETTINGS_PAPER_FORMAT;
  4015.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4016. gtk+-3.0.vapi:7570.2-7570.49: note: previous definition of `PRINT_SETTINGS_PAPER_FORMAT' was here
  4017.     public const string PRINT_SETTINGS_PAPER_FORMAT;
  4018.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4019. gtk+-2.0.vapi:7602.2-7602.49: error: `Gtk' already contains a definition for `PRINT_SETTINGS_PAPER_HEIGHT'
  4020.     public const string PRINT_SETTINGS_PAPER_HEIGHT;
  4021.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4022. gtk+-3.0.vapi:7572.2-7572.49: note: previous definition of `PRINT_SETTINGS_PAPER_HEIGHT' was here
  4023.     public const string PRINT_SETTINGS_PAPER_HEIGHT;
  4024.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4025. gtk+-2.0.vapi:7604.2-7604.48: error: `Gtk' already contains a definition for `PRINT_SETTINGS_PAPER_WIDTH'
  4026.     public const string PRINT_SETTINGS_PAPER_WIDTH;
  4027.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4028. gtk+-3.0.vapi:7574.2-7574.48: note: previous definition of `PRINT_SETTINGS_PAPER_WIDTH' was here
  4029.     public const string PRINT_SETTINGS_PAPER_WIDTH;
  4030.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4031. gtk+-2.0.vapi:7606.2-7606.44: error: `Gtk' already contains a definition for `PRINT_SETTINGS_PRINTER'
  4032.     public const string PRINT_SETTINGS_PRINTER;
  4033.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4034. gtk+-3.0.vapi:7576.2-7576.44: note: previous definition of `PRINT_SETTINGS_PRINTER' was here
  4035.     public const string PRINT_SETTINGS_PRINTER;
  4036.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4037. gtk+-2.0.vapi:7608.2-7608.48: error: `Gtk' already contains a definition for `PRINT_SETTINGS_PRINTER_LPI'
  4038.     public const string PRINT_SETTINGS_PRINTER_LPI;
  4039.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4040. gtk+-3.0.vapi:7578.2-7578.48: note: previous definition of `PRINT_SETTINGS_PRINTER_LPI' was here
  4041.     public const string PRINT_SETTINGS_PRINTER_LPI;
  4042.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4043. gtk+-2.0.vapi:7610.2-7610.48: error: `Gtk' already contains a definition for `PRINT_SETTINGS_PRINT_PAGES'
  4044.     public const string PRINT_SETTINGS_PRINT_PAGES;
  4045.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4046. gtk+-3.0.vapi:7580.2-7580.48: note: previous definition of `PRINT_SETTINGS_PRINT_PAGES' was here
  4047.     public const string PRINT_SETTINGS_PRINT_PAGES;
  4048.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4049. gtk+-2.0.vapi:7612.2-7612.44: error: `Gtk' already contains a definition for `PRINT_SETTINGS_QUALITY'
  4050.     public const string PRINT_SETTINGS_QUALITY;
  4051.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4052. gtk+-3.0.vapi:7582.2-7582.44: note: previous definition of `PRINT_SETTINGS_QUALITY' was here
  4053.     public const string PRINT_SETTINGS_QUALITY;
  4054.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4055. gtk+-2.0.vapi:7614.2-7614.47: error: `Gtk' already contains a definition for `PRINT_SETTINGS_RESOLUTION'
  4056.     public const string PRINT_SETTINGS_RESOLUTION;
  4057.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4058. gtk+-3.0.vapi:7584.2-7584.47: note: previous definition of `PRINT_SETTINGS_RESOLUTION' was here
  4059.     public const string PRINT_SETTINGS_RESOLUTION;
  4060.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4061. gtk+-2.0.vapi:7616.2-7616.49: error: `Gtk' already contains a definition for `PRINT_SETTINGS_RESOLUTION_X'
  4062.     public const string PRINT_SETTINGS_RESOLUTION_X;
  4063.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4064. gtk+-3.0.vapi:7586.2-7586.49: note: previous definition of `PRINT_SETTINGS_RESOLUTION_X' was here
  4065.     public const string PRINT_SETTINGS_RESOLUTION_X;
  4066.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4067. gtk+-2.0.vapi:7618.2-7618.49: error: `Gtk' already contains a definition for `PRINT_SETTINGS_RESOLUTION_Y'
  4068.     public const string PRINT_SETTINGS_RESOLUTION_Y;
  4069.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4070. gtk+-3.0.vapi:7588.2-7588.49: note: previous definition of `PRINT_SETTINGS_RESOLUTION_Y' was here
  4071.     public const string PRINT_SETTINGS_RESOLUTION_Y;
  4072.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4073. gtk+-2.0.vapi:7620.2-7620.44: error: `Gtk' already contains a definition for `PRINT_SETTINGS_REVERSE'
  4074.     public const string PRINT_SETTINGS_REVERSE;
  4075.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4076. gtk+-3.0.vapi:7590.2-7590.44: note: previous definition of `PRINT_SETTINGS_REVERSE' was here
  4077.     public const string PRINT_SETTINGS_REVERSE;
  4078.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4079. gtk+-2.0.vapi:7622.2-7622.42: error: `Gtk' already contains a definition for `PRINT_SETTINGS_SCALE'
  4080.     public const string PRINT_SETTINGS_SCALE;
  4081.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4082. gtk+-3.0.vapi:7592.2-7592.42: note: previous definition of `PRINT_SETTINGS_SCALE' was here
  4083.     public const string PRINT_SETTINGS_SCALE;
  4084.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4085. gtk+-2.0.vapi:7624.2-7624.46: error: `Gtk' already contains a definition for `PRINT_SETTINGS_USE_COLOR'
  4086.     public const string PRINT_SETTINGS_USE_COLOR;
  4087.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4088. gtk+-3.0.vapi:7594.2-7594.46: note: previous definition of `PRINT_SETTINGS_USE_COLOR' was here
  4089.     public const string PRINT_SETTINGS_USE_COLOR;
  4090.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4091. gtk+-2.0.vapi:7626.2-7626.55: error: `Gtk' already contains a definition for `PRINT_SETTINGS_WIN32_DRIVER_EXTRA'
  4092.     public const string PRINT_SETTINGS_WIN32_DRIVER_EXTRA;
  4093.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4094. gtk+-3.0.vapi:7596.2-7596.55: note: previous definition of `PRINT_SETTINGS_WIN32_DRIVER_EXTRA' was here
  4095.     public const string PRINT_SETTINGS_WIN32_DRIVER_EXTRA;
  4096.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4097. gtk+-2.0.vapi:7628.2-7628.57: error: `Gtk' already contains a definition for `PRINT_SETTINGS_WIN32_DRIVER_VERSION'
  4098.     public const string PRINT_SETTINGS_WIN32_DRIVER_VERSION;
  4099.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4100. gtk+-3.0.vapi:7598.2-7598.57: note: previous definition of `PRINT_SETTINGS_WIN32_DRIVER_VERSION' was here
  4101.     public const string PRINT_SETTINGS_WIN32_DRIVER_VERSION;
  4102.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4103. gtk+-2.0.vapi:7632.2-7632.34: error: `Gtk' already contains a definition for `PRIORITY_RESIZE'
  4104.     public const int PRIORITY_RESIZE;
  4105.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4106. gtk+-3.0.vapi:7600.2-7600.34: note: previous definition of `PRIORITY_RESIZE' was here
  4107.     public const int PRIORITY_RESIZE;
  4108.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4109. gtk+-2.0.vapi:7635.2-7635.33: error: `Gtk' already contains a definition for `STOCK_ABOUT'
  4110.     public const string STOCK_ABOUT;
  4111.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4112. gtk+-3.0.vapi:7603.2-7603.33: note: previous definition of `STOCK_ABOUT' was here
  4113.     public const string STOCK_ABOUT;
  4114.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4115. gtk+-2.0.vapi:7638.2-7638.31: error: `Gtk' already contains a definition for `STOCK_ADD'
  4116.     public const string STOCK_ADD;
  4117.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4118. gtk+-3.0.vapi:7606.2-7606.31: note: previous definition of `STOCK_ADD' was here
  4119.     public const string STOCK_ADD;
  4120.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4121. gtk+-2.0.vapi:7641.2-7641.33: error: `Gtk' already contains a definition for `STOCK_APPLY'
  4122.     public const string STOCK_APPLY;
  4123.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4124. gtk+-3.0.vapi:7609.2-7609.33: note: previous definition of `STOCK_APPLY' was here
  4125.     public const string STOCK_APPLY;
  4126.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4127. gtk+-2.0.vapi:7644.2-7644.32: error: `Gtk' already contains a definition for `STOCK_BOLD'
  4128.     public const string STOCK_BOLD;
  4129.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4130. gtk+-3.0.vapi:7612.2-7612.32: note: previous definition of `STOCK_BOLD' was here
  4131.     public const string STOCK_BOLD;
  4132.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4133. gtk+-2.0.vapi:7647.2-7647.34: error: `Gtk' already contains a definition for `STOCK_CANCEL'
  4134.     public const string STOCK_CANCEL;
  4135.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4136. gtk+-3.0.vapi:7615.2-7615.34: note: previous definition of `STOCK_CANCEL' was here
  4137.     public const string STOCK_CANCEL;
  4138.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4139. gtk+-2.0.vapi:7650.2-7650.45: error: `Gtk' already contains a definition for `STOCK_CAPS_LOCK_WARNING'
  4140.     public const string STOCK_CAPS_LOCK_WARNING;
  4141.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4142. gtk+-3.0.vapi:7618.2-7618.45: note: previous definition of `STOCK_CAPS_LOCK_WARNING' was here
  4143.     public const string STOCK_CAPS_LOCK_WARNING;
  4144.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4145. gtk+-2.0.vapi:7653.2-7653.33: error: `Gtk' already contains a definition for `STOCK_CDROM'
  4146.     public const string STOCK_CDROM;
  4147.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4148. gtk+-3.0.vapi:7621.2-7621.33: note: previous definition of `STOCK_CDROM' was here
  4149.     public const string STOCK_CDROM;
  4150.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4151. gtk+-2.0.vapi:7656.2-7656.33: error: `Gtk' already contains a definition for `STOCK_CLEAR'
  4152.     public const string STOCK_CLEAR;
  4153.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4154. gtk+-3.0.vapi:7624.2-7624.33: note: previous definition of `STOCK_CLEAR' was here
  4155.     public const string STOCK_CLEAR;
  4156.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4157. gtk+-2.0.vapi:7659.2-7659.33: error: `Gtk' already contains a definition for `STOCK_CLOSE'
  4158.     public const string STOCK_CLOSE;
  4159.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4160. gtk+-3.0.vapi:7627.2-7627.33: note: previous definition of `STOCK_CLOSE' was here
  4161.     public const string STOCK_CLOSE;
  4162.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4163. gtk+-2.0.vapi:7662.2-7662.40: error: `Gtk' already contains a definition for `STOCK_COLOR_PICKER'
  4164.     public const string STOCK_COLOR_PICKER;
  4165.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4166. gtk+-3.0.vapi:7630.2-7630.40: note: previous definition of `STOCK_COLOR_PICKER' was here
  4167.     public const string STOCK_COLOR_PICKER;
  4168.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4169. gtk+-2.0.vapi:7665.2-7665.35: error: `Gtk' already contains a definition for `STOCK_CONNECT'
  4170.     public const string STOCK_CONNECT;
  4171.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4172. gtk+-3.0.vapi:7633.2-7633.35: note: previous definition of `STOCK_CONNECT' was here
  4173.     public const string STOCK_CONNECT;
  4174.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4175. gtk+-2.0.vapi:7668.2-7668.35: error: `Gtk' already contains a definition for `STOCK_CONVERT'
  4176.     public const string STOCK_CONVERT;
  4177.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4178. gtk+-3.0.vapi:7636.2-7636.35: note: previous definition of `STOCK_CONVERT' was here
  4179.     public const string STOCK_CONVERT;
  4180.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4181. gtk+-2.0.vapi:7671.2-7671.32: error: `Gtk' already contains a definition for `STOCK_COPY'
  4182.     public const string STOCK_COPY;
  4183.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4184. gtk+-3.0.vapi:7639.2-7639.32: note: previous definition of `STOCK_COPY' was here
  4185.     public const string STOCK_COPY;
  4186.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4187. gtk+-2.0.vapi:7674.2-7674.31: error: `Gtk' already contains a definition for `STOCK_CUT'
  4188.     public const string STOCK_CUT;
  4189.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4190. gtk+-3.0.vapi:7642.2-7642.31: note: previous definition of `STOCK_CUT' was here
  4191.     public const string STOCK_CUT;
  4192.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4193. gtk+-2.0.vapi:7677.2-7677.34: error: `Gtk' already contains a definition for `STOCK_DELETE'
  4194.     public const string STOCK_DELETE;
  4195.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4196. gtk+-3.0.vapi:7645.2-7645.34: note: previous definition of `STOCK_DELETE' was here
  4197.     public const string STOCK_DELETE;
  4198.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4199. gtk+-2.0.vapi:7680.2-7680.49: error: `Gtk' already contains a definition for `STOCK_DIALOG_AUTHENTICATION'
  4200.     public const string STOCK_DIALOG_AUTHENTICATION;
  4201.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4202. gtk+-3.0.vapi:7648.2-7648.49: note: previous definition of `STOCK_DIALOG_AUTHENTICATION' was here
  4203.     public const string STOCK_DIALOG_AUTHENTICATION;
  4204.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4205. gtk+-2.0.vapi:7683.2-7683.40: error: `Gtk' already contains a definition for `STOCK_DIALOG_ERROR'
  4206.     public const string STOCK_DIALOG_ERROR;
  4207.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4208. gtk+-3.0.vapi:7651.2-7651.40: note: previous definition of `STOCK_DIALOG_ERROR' was here
  4209.     public const string STOCK_DIALOG_ERROR;
  4210.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4211. gtk+-2.0.vapi:7686.2-7686.39: error: `Gtk' already contains a definition for `STOCK_DIALOG_INFO'
  4212.     public const string STOCK_DIALOG_INFO;
  4213.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4214. gtk+-3.0.vapi:7654.2-7654.39: note: previous definition of `STOCK_DIALOG_INFO' was here
  4215.     public const string STOCK_DIALOG_INFO;
  4216.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4217. gtk+-2.0.vapi:7689.2-7689.43: error: `Gtk' already contains a definition for `STOCK_DIALOG_QUESTION'
  4218.     public const string STOCK_DIALOG_QUESTION;
  4219.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4220. gtk+-3.0.vapi:7657.2-7657.43: note: previous definition of `STOCK_DIALOG_QUESTION' was here
  4221.     public const string STOCK_DIALOG_QUESTION;
  4222.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4223. gtk+-2.0.vapi:7692.2-7692.42: error: `Gtk' already contains a definition for `STOCK_DIALOG_WARNING'
  4224.     public const string STOCK_DIALOG_WARNING;
  4225.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4226. gtk+-3.0.vapi:7660.2-7660.42: note: previous definition of `STOCK_DIALOG_WARNING' was here
  4227.     public const string STOCK_DIALOG_WARNING;
  4228.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4229. gtk+-2.0.vapi:7695.2-7695.37: error: `Gtk' already contains a definition for `STOCK_DIRECTORY'
  4230.     public const string STOCK_DIRECTORY;
  4231.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4232. gtk+-3.0.vapi:7663.2-7663.37: note: previous definition of `STOCK_DIRECTORY' was here
  4233.     public const string STOCK_DIRECTORY;
  4234.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4235. gtk+-2.0.vapi:7698.2-7698.35: error: `Gtk' already contains a definition for `STOCK_DISCARD'
  4236.     public const string STOCK_DISCARD;
  4237.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4238. gtk+-3.0.vapi:7666.2-7666.35: note: previous definition of `STOCK_DISCARD' was here
  4239.     public const string STOCK_DISCARD;
  4240.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4241. gtk+-2.0.vapi:7701.2-7701.38: error: `Gtk' already contains a definition for `STOCK_DISCONNECT'
  4242.     public const string STOCK_DISCONNECT;
  4243.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4244. gtk+-3.0.vapi:7669.2-7669.38: note: previous definition of `STOCK_DISCONNECT' was here
  4245.     public const string STOCK_DISCONNECT;
  4246.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4247. gtk+-2.0.vapi:7704.2-7704.31: error: `Gtk' already contains a definition for `STOCK_DND'
  4248.     public const string STOCK_DND;
  4249.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4250. gtk+-3.0.vapi:7672.2-7672.31: note: previous definition of `STOCK_DND' was here
  4251.     public const string STOCK_DND;
  4252.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4253. gtk+-2.0.vapi:7707.2-7707.40: error: `Gtk' already contains a definition for `STOCK_DND_MULTIPLE'
  4254.     public const string STOCK_DND_MULTIPLE;
  4255.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4256. gtk+-3.0.vapi:7675.2-7675.40: note: previous definition of `STOCK_DND_MULTIPLE' was here
  4257.     public const string STOCK_DND_MULTIPLE;
  4258.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4259. gtk+-2.0.vapi:7710.2-7710.32: error: `Gtk' already contains a definition for `STOCK_EDIT'
  4260.     public const string STOCK_EDIT;
  4261.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4262. gtk+-3.0.vapi:7678.2-7678.32: note: previous definition of `STOCK_EDIT' was here
  4263.     public const string STOCK_EDIT;
  4264.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4265. gtk+-2.0.vapi:7713.2-7713.35: error: `Gtk' already contains a definition for `STOCK_EXECUTE'
  4266.     public const string STOCK_EXECUTE;
  4267.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4268. gtk+-3.0.vapi:7681.2-7681.35: note: previous definition of `STOCK_EXECUTE' was here
  4269.     public const string STOCK_EXECUTE;
  4270.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4271. gtk+-2.0.vapi:7716.2-7716.32: error: `Gtk' already contains a definition for `STOCK_FILE'
  4272.     public const string STOCK_FILE;
  4273.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4274. gtk+-3.0.vapi:7684.2-7684.32: note: previous definition of `STOCK_FILE' was here
  4275.     public const string STOCK_FILE;
  4276.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4277. gtk+-2.0.vapi:7719.2-7719.32: error: `Gtk' already contains a definition for `STOCK_FIND'
  4278.     public const string STOCK_FIND;
  4279.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4280. gtk+-3.0.vapi:7687.2-7687.32: note: previous definition of `STOCK_FIND' was here
  4281.     public const string STOCK_FIND;
  4282.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4283. gtk+-2.0.vapi:7722.2-7722.44: error: `Gtk' already contains a definition for `STOCK_FIND_AND_REPLACE'
  4284.     public const string STOCK_FIND_AND_REPLACE;
  4285.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4286. gtk+-3.0.vapi:7690.2-7690.44: note: previous definition of `STOCK_FIND_AND_REPLACE' was here
  4287.     public const string STOCK_FIND_AND_REPLACE;
  4288.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4289. gtk+-2.0.vapi:7725.2-7725.34: error: `Gtk' already contains a definition for `STOCK_FLOPPY'
  4290.     public const string STOCK_FLOPPY;
  4291.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4292. gtk+-3.0.vapi:7693.2-7693.34: note: previous definition of `STOCK_FLOPPY' was here
  4293.     public const string STOCK_FLOPPY;
  4294.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4295. gtk+-2.0.vapi:7728.2-7728.38: error: `Gtk' already contains a definition for `STOCK_FULLSCREEN'
  4296.     public const string STOCK_FULLSCREEN;
  4297.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4298. gtk+-3.0.vapi:7696.2-7696.38: note: previous definition of `STOCK_FULLSCREEN' was here
  4299.     public const string STOCK_FULLSCREEN;
  4300.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4301. gtk+-2.0.vapi:7731.2-7731.39: error: `Gtk' already contains a definition for `STOCK_GOTO_BOTTOM'
  4302.     public const string STOCK_GOTO_BOTTOM;
  4303.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4304. gtk+-3.0.vapi:7699.2-7699.39: note: previous definition of `STOCK_GOTO_BOTTOM' was here
  4305.     public const string STOCK_GOTO_BOTTOM;
  4306.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4307. gtk+-2.0.vapi:7734.2-7734.38: error: `Gtk' already contains a definition for `STOCK_GOTO_FIRST'
  4308.     public const string STOCK_GOTO_FIRST;
  4309.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4310. gtk+-3.0.vapi:7702.2-7702.38: note: previous definition of `STOCK_GOTO_FIRST' was here
  4311.     public const string STOCK_GOTO_FIRST;
  4312.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4313. gtk+-2.0.vapi:7737.2-7737.37: error: `Gtk' already contains a definition for `STOCK_GOTO_LAST'
  4314.     public const string STOCK_GOTO_LAST;
  4315.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4316. gtk+-3.0.vapi:7705.2-7705.37: note: previous definition of `STOCK_GOTO_LAST' was here
  4317.     public const string STOCK_GOTO_LAST;
  4318.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4319. gtk+-2.0.vapi:7740.2-7740.36: error: `Gtk' already contains a definition for `STOCK_GOTO_TOP'
  4320.     public const string STOCK_GOTO_TOP;
  4321.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4322. gtk+-3.0.vapi:7708.2-7708.36: note: previous definition of `STOCK_GOTO_TOP' was here
  4323.     public const string STOCK_GOTO_TOP;
  4324.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4325. gtk+-2.0.vapi:7743.2-7743.35: error: `Gtk' already contains a definition for `STOCK_GO_BACK'
  4326.     public const string STOCK_GO_BACK;
  4327.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4328. gtk+-3.0.vapi:7711.2-7711.35: note: previous definition of `STOCK_GO_BACK' was here
  4329.     public const string STOCK_GO_BACK;
  4330.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4331. gtk+-2.0.vapi:7746.2-7746.35: error: `Gtk' already contains a definition for `STOCK_GO_DOWN'
  4332.     public const string STOCK_GO_DOWN;
  4333.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4334. gtk+-3.0.vapi:7714.2-7714.35: note: previous definition of `STOCK_GO_DOWN' was here
  4335.     public const string STOCK_GO_DOWN;
  4336.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4337. gtk+-2.0.vapi:7749.2-7749.38: error: `Gtk' already contains a definition for `STOCK_GO_FORWARD'
  4338.     public const string STOCK_GO_FORWARD;
  4339.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4340. gtk+-3.0.vapi:7717.2-7717.38: note: previous definition of `STOCK_GO_FORWARD' was here
  4341.     public const string STOCK_GO_FORWARD;
  4342.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4343. gtk+-2.0.vapi:7752.2-7752.33: error: `Gtk' already contains a definition for `STOCK_GO_UP'
  4344.     public const string STOCK_GO_UP;
  4345.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4346. gtk+-3.0.vapi:7720.2-7720.33: note: previous definition of `STOCK_GO_UP' was here
  4347.     public const string STOCK_GO_UP;
  4348.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4349. gtk+-2.0.vapi:7755.2-7755.36: error: `Gtk' already contains a definition for `STOCK_HARDDISK'
  4350.     public const string STOCK_HARDDISK;
  4351.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4352. gtk+-3.0.vapi:7723.2-7723.36: note: previous definition of `STOCK_HARDDISK' was here
  4353.     public const string STOCK_HARDDISK;
  4354.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4355. gtk+-2.0.vapi:7758.2-7758.32: error: `Gtk' already contains a definition for `STOCK_HELP'
  4356.     public const string STOCK_HELP;
  4357.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4358. gtk+-3.0.vapi:7726.2-7726.32: note: previous definition of `STOCK_HELP' was here
  4359.     public const string STOCK_HELP;
  4360.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4361. gtk+-2.0.vapi:7761.2-7761.32: error: `Gtk' already contains a definition for `STOCK_HOME'
  4362.     public const string STOCK_HOME;
  4363.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4364. gtk+-3.0.vapi:7729.2-7729.32: note: previous definition of `STOCK_HOME' was here
  4365.     public const string STOCK_HOME;
  4366.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4367. gtk+-2.0.vapi:7764.2-7764.34: error: `Gtk' already contains a definition for `STOCK_INDENT'
  4368.     public const string STOCK_INDENT;
  4369.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4370. gtk+-3.0.vapi:7732.2-7732.34: note: previous definition of `STOCK_INDENT' was here
  4371.     public const string STOCK_INDENT;
  4372.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4373. gtk+-2.0.vapi:7767.2-7767.33: error: `Gtk' already contains a definition for `STOCK_INDEX'
  4374.     public const string STOCK_INDEX;
  4375.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4376. gtk+-3.0.vapi:7735.2-7735.33: note: previous definition of `STOCK_INDEX' was here
  4377.     public const string STOCK_INDEX;
  4378.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4379. gtk+-2.0.vapi:7770.2-7770.32: error: `Gtk' already contains a definition for `STOCK_INFO'
  4380.     public const string STOCK_INFO;
  4381.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4382. gtk+-3.0.vapi:7738.2-7738.32: note: previous definition of `STOCK_INFO' was here
  4383.     public const string STOCK_INFO;
  4384.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4385. gtk+-2.0.vapi:7773.2-7773.34: error: `Gtk' already contains a definition for `STOCK_ITALIC'
  4386.     public const string STOCK_ITALIC;
  4387.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4388. gtk+-3.0.vapi:7741.2-7741.34: note: previous definition of `STOCK_ITALIC' was here
  4389.     public const string STOCK_ITALIC;
  4390.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4391. gtk+-2.0.vapi:7776.2-7776.35: error: `Gtk' already contains a definition for `STOCK_JUMP_TO'
  4392.     public const string STOCK_JUMP_TO;
  4393.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4394. gtk+-3.0.vapi:7744.2-7744.35: note: previous definition of `STOCK_JUMP_TO' was here
  4395.     public const string STOCK_JUMP_TO;
  4396.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4397. gtk+-2.0.vapi:7779.2-7779.42: error: `Gtk' already contains a definition for `STOCK_JUSTIFY_CENTER'
  4398.     public const string STOCK_JUSTIFY_CENTER;
  4399.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4400. gtk+-3.0.vapi:7747.2-7747.42: note: previous definition of `STOCK_JUSTIFY_CENTER' was here
  4401.     public const string STOCK_JUSTIFY_CENTER;
  4402.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4403. gtk+-2.0.vapi:7782.2-7782.40: error: `Gtk' already contains a definition for `STOCK_JUSTIFY_FILL'
  4404.     public const string STOCK_JUSTIFY_FILL;
  4405.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4406. gtk+-3.0.vapi:7750.2-7750.40: note: previous definition of `STOCK_JUSTIFY_FILL' was here
  4407.     public const string STOCK_JUSTIFY_FILL;
  4408.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4409. gtk+-2.0.vapi:7785.2-7785.40: error: `Gtk' already contains a definition for `STOCK_JUSTIFY_LEFT'
  4410.     public const string STOCK_JUSTIFY_LEFT;
  4411.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4412. gtk+-3.0.vapi:7753.2-7753.40: note: previous definition of `STOCK_JUSTIFY_LEFT' was here
  4413.     public const string STOCK_JUSTIFY_LEFT;
  4414.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4415. gtk+-2.0.vapi:7788.2-7788.41: error: `Gtk' already contains a definition for `STOCK_JUSTIFY_RIGHT'
  4416.     public const string STOCK_JUSTIFY_RIGHT;
  4417.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4418. gtk+-3.0.vapi:7756.2-7756.41: note: previous definition of `STOCK_JUSTIFY_RIGHT' was here
  4419.     public const string STOCK_JUSTIFY_RIGHT;
  4420.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4421. gtk+-2.0.vapi:7791.2-7791.44: error: `Gtk' already contains a definition for `STOCK_LEAVE_FULLSCREEN'
  4422.     public const string STOCK_LEAVE_FULLSCREEN;
  4423.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4424. gtk+-3.0.vapi:7759.2-7759.44: note: previous definition of `STOCK_LEAVE_FULLSCREEN' was here
  4425.     public const string STOCK_LEAVE_FULLSCREEN;
  4426.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4427. gtk+-2.0.vapi:7794.2-7794.41: error: `Gtk' already contains a definition for `STOCK_MEDIA_FORWARD'
  4428.     public const string STOCK_MEDIA_FORWARD;
  4429.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4430. gtk+-3.0.vapi:7762.2-7762.41: note: previous definition of `STOCK_MEDIA_FORWARD' was here
  4431.     public const string STOCK_MEDIA_FORWARD;
  4432.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4433. gtk+-2.0.vapi:7797.2-7797.38: error: `Gtk' already contains a definition for `STOCK_MEDIA_NEXT'
  4434.     public const string STOCK_MEDIA_NEXT;
  4435.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4436. gtk+-3.0.vapi:7765.2-7765.38: note: previous definition of `STOCK_MEDIA_NEXT' was here
  4437.     public const string STOCK_MEDIA_NEXT;
  4438.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4439. gtk+-2.0.vapi:7800.2-7800.39: error: `Gtk' already contains a definition for `STOCK_MEDIA_PAUSE'
  4440.     public const string STOCK_MEDIA_PAUSE;
  4441.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4442. gtk+-3.0.vapi:7768.2-7768.39: note: previous definition of `STOCK_MEDIA_PAUSE' was here
  4443.     public const string STOCK_MEDIA_PAUSE;
  4444.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4445. gtk+-2.0.vapi:7803.2-7803.38: error: `Gtk' already contains a definition for `STOCK_MEDIA_PLAY'
  4446.     public const string STOCK_MEDIA_PLAY;
  4447.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4448. gtk+-3.0.vapi:7771.2-7771.38: note: previous definition of `STOCK_MEDIA_PLAY' was here
  4449.     public const string STOCK_MEDIA_PLAY;
  4450.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4451. gtk+-2.0.vapi:7806.2-7806.42: error: `Gtk' already contains a definition for `STOCK_MEDIA_PREVIOUS'
  4452.     public const string STOCK_MEDIA_PREVIOUS;
  4453.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4454. gtk+-3.0.vapi:7774.2-7774.42: note: previous definition of `STOCK_MEDIA_PREVIOUS' was here
  4455.     public const string STOCK_MEDIA_PREVIOUS;
  4456.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4457. gtk+-2.0.vapi:7809.2-7809.40: error: `Gtk' already contains a definition for `STOCK_MEDIA_RECORD'
  4458.     public const string STOCK_MEDIA_RECORD;
  4459.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4460. gtk+-3.0.vapi:7777.2-7777.40: note: previous definition of `STOCK_MEDIA_RECORD' was here
  4461.     public const string STOCK_MEDIA_RECORD;
  4462.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4463. gtk+-2.0.vapi:7812.2-7812.40: error: `Gtk' already contains a definition for `STOCK_MEDIA_REWIND'
  4464.     public const string STOCK_MEDIA_REWIND;
  4465.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4466. gtk+-3.0.vapi:7780.2-7780.40: note: previous definition of `STOCK_MEDIA_REWIND' was here
  4467.     public const string STOCK_MEDIA_REWIND;
  4468.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4469. gtk+-2.0.vapi:7815.2-7815.38: error: `Gtk' already contains a definition for `STOCK_MEDIA_STOP'
  4470.     public const string STOCK_MEDIA_STOP;
  4471.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4472. gtk+-3.0.vapi:7783.2-7783.38: note: previous definition of `STOCK_MEDIA_STOP' was here
  4473.     public const string STOCK_MEDIA_STOP;
  4474.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4475. gtk+-2.0.vapi:7818.2-7818.41: error: `Gtk' already contains a definition for `STOCK_MISSING_IMAGE'
  4476.     public const string STOCK_MISSING_IMAGE;
  4477.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4478. gtk+-3.0.vapi:7786.2-7786.41: note: previous definition of `STOCK_MISSING_IMAGE' was here
  4479.     public const string STOCK_MISSING_IMAGE;
  4480.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4481. gtk+-2.0.vapi:7821.2-7821.35: error: `Gtk' already contains a definition for `STOCK_NETWORK'
  4482.     public const string STOCK_NETWORK;
  4483.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4484. gtk+-3.0.vapi:7789.2-7789.35: note: previous definition of `STOCK_NETWORK' was here
  4485.     public const string STOCK_NETWORK;
  4486.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4487. gtk+-2.0.vapi:7824.2-7824.31: error: `Gtk' already contains a definition for `STOCK_NEW'
  4488.     public const string STOCK_NEW;
  4489.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4490. gtk+-3.0.vapi:7792.2-7792.31: note: previous definition of `STOCK_NEW' was here
  4491.     public const string STOCK_NEW;
  4492.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4493. gtk+-2.0.vapi:7827.2-7827.30: error: `Gtk' already contains a definition for `STOCK_NO'
  4494.     public const string STOCK_NO;
  4495.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4496. gtk+-3.0.vapi:7795.2-7795.30: note: previous definition of `STOCK_NO' was here
  4497.     public const string STOCK_NO;
  4498.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4499. gtk+-2.0.vapi:7830.2-7830.30: error: `Gtk' already contains a definition for `STOCK_OK'
  4500.     public const string STOCK_OK;
  4501.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4502. gtk+-3.0.vapi:7798.2-7798.30: note: previous definition of `STOCK_OK' was here
  4503.     public const string STOCK_OK;
  4504.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4505. gtk+-2.0.vapi:7833.2-7833.32: error: `Gtk' already contains a definition for `STOCK_OPEN'
  4506.     public const string STOCK_OPEN;
  4507.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4508. gtk+-3.0.vapi:7801.2-7801.32: note: previous definition of `STOCK_OPEN' was here
  4509.     public const string STOCK_OPEN;
  4510.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4511. gtk+-2.0.vapi:7836.2-7836.49: error: `Gtk' already contains a definition for `STOCK_ORIENTATION_LANDSCAPE'
  4512.     public const string STOCK_ORIENTATION_LANDSCAPE;
  4513.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4514. gtk+-3.0.vapi:7804.2-7804.49: note: previous definition of `STOCK_ORIENTATION_LANDSCAPE' was here
  4515.     public const string STOCK_ORIENTATION_LANDSCAPE;
  4516.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4517. gtk+-2.0.vapi:7839.2-7839.48: error: `Gtk' already contains a definition for `STOCK_ORIENTATION_PORTRAIT'
  4518.     public const string STOCK_ORIENTATION_PORTRAIT;
  4519.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4520. gtk+-3.0.vapi:7807.2-7807.48: note: previous definition of `STOCK_ORIENTATION_PORTRAIT' was here
  4521.     public const string STOCK_ORIENTATION_PORTRAIT;
  4522.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4523. gtk+-2.0.vapi:7842.2-7842.57: error: `Gtk' already contains a definition for `STOCK_ORIENTATION_REVERSE_LANDSCAPE'
  4524.     public const string STOCK_ORIENTATION_REVERSE_LANDSCAPE;
  4525.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4526. gtk+-3.0.vapi:7810.2-7810.57: note: previous definition of `STOCK_ORIENTATION_REVERSE_LANDSCAPE' was here
  4527.     public const string STOCK_ORIENTATION_REVERSE_LANDSCAPE;
  4528.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4529. gtk+-2.0.vapi:7845.2-7845.56: error: `Gtk' already contains a definition for `STOCK_ORIENTATION_REVERSE_PORTRAIT'
  4530.     public const string STOCK_ORIENTATION_REVERSE_PORTRAIT;
  4531.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4532. gtk+-3.0.vapi:7813.2-7813.56: note: previous definition of `STOCK_ORIENTATION_REVERSE_PORTRAIT' was here
  4533.     public const string STOCK_ORIENTATION_REVERSE_PORTRAIT;
  4534.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4535. gtk+-2.0.vapi:7848.2-7848.38: error: `Gtk' already contains a definition for `STOCK_PAGE_SETUP'
  4536.     public const string STOCK_PAGE_SETUP;
  4537.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4538. gtk+-3.0.vapi:7816.2-7816.38: note: previous definition of `STOCK_PAGE_SETUP' was here
  4539.     public const string STOCK_PAGE_SETUP;
  4540.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4541. gtk+-2.0.vapi:7851.2-7851.33: error: `Gtk' already contains a definition for `STOCK_PASTE'
  4542.     public const string STOCK_PASTE;
  4543.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4544. gtk+-3.0.vapi:7819.2-7819.33: note: previous definition of `STOCK_PASTE' was here
  4545.     public const string STOCK_PASTE;
  4546.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4547. gtk+-2.0.vapi:7854.2-7854.39: error: `Gtk' already contains a definition for `STOCK_PREFERENCES'
  4548.     public const string STOCK_PREFERENCES;
  4549.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4550. gtk+-3.0.vapi:7822.2-7822.39: note: previous definition of `STOCK_PREFERENCES' was here
  4551.     public const string STOCK_PREFERENCES;
  4552.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4553. gtk+-2.0.vapi:7857.2-7857.33: error: `Gtk' already contains a definition for `STOCK_PRINT'
  4554.     public const string STOCK_PRINT;
  4555.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4556. gtk+-3.0.vapi:7825.2-7825.33: note: previous definition of `STOCK_PRINT' was here
  4557.     public const string STOCK_PRINT;
  4558.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4559. gtk+-2.0.vapi:7860.2-7860.39: error: `Gtk' already contains a definition for `STOCK_PRINT_ERROR'
  4560.     public const string STOCK_PRINT_ERROR;
  4561.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4562. gtk+-3.0.vapi:7828.2-7828.39: note: previous definition of `STOCK_PRINT_ERROR' was here
  4563.     public const string STOCK_PRINT_ERROR;
  4564.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4565. gtk+-2.0.vapi:7863.2-7863.40: error: `Gtk' already contains a definition for `STOCK_PRINT_PAUSED'
  4566.     public const string STOCK_PRINT_PAUSED;
  4567.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4568. gtk+-3.0.vapi:7831.2-7831.40: note: previous definition of `STOCK_PRINT_PAUSED' was here
  4569.     public const string STOCK_PRINT_PAUSED;
  4570.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4571. gtk+-2.0.vapi:7866.2-7866.41: error: `Gtk' already contains a definition for `STOCK_PRINT_PREVIEW'
  4572.     public const string STOCK_PRINT_PREVIEW;
  4573.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4574. gtk+-3.0.vapi:7834.2-7834.41: note: previous definition of `STOCK_PRINT_PREVIEW' was here
  4575.     public const string STOCK_PRINT_PREVIEW;
  4576.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4577. gtk+-2.0.vapi:7869.2-7869.40: error: `Gtk' already contains a definition for `STOCK_PRINT_REPORT'
  4578.     public const string STOCK_PRINT_REPORT;
  4579.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4580. gtk+-3.0.vapi:7837.2-7837.40: note: previous definition of `STOCK_PRINT_REPORT' was here
  4581.     public const string STOCK_PRINT_REPORT;
  4582.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4583. gtk+-2.0.vapi:7872.2-7872.41: error: `Gtk' already contains a definition for `STOCK_PRINT_WARNING'
  4584.     public const string STOCK_PRINT_WARNING;
  4585.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4586. gtk+-3.0.vapi:7840.2-7840.41: note: previous definition of `STOCK_PRINT_WARNING' was here
  4587.     public const string STOCK_PRINT_WARNING;
  4588.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4589. gtk+-2.0.vapi:7875.2-7875.38: error: `Gtk' already contains a definition for `STOCK_PROPERTIES'
  4590.     public const string STOCK_PROPERTIES;
  4591.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4592. gtk+-3.0.vapi:7843.2-7843.38: note: previous definition of `STOCK_PROPERTIES' was here
  4593.     public const string STOCK_PROPERTIES;
  4594.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4595. gtk+-2.0.vapi:7878.2-7878.32: error: `Gtk' already contains a definition for `STOCK_QUIT'
  4596.     public const string STOCK_QUIT;
  4597.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4598. gtk+-3.0.vapi:7846.2-7846.32: note: previous definition of `STOCK_QUIT' was here
  4599.     public const string STOCK_QUIT;
  4600.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4601. gtk+-2.0.vapi:7881.2-7881.32: error: `Gtk' already contains a definition for `STOCK_REDO'
  4602.     public const string STOCK_REDO;
  4603.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4604. gtk+-3.0.vapi:7849.2-7849.32: note: previous definition of `STOCK_REDO' was here
  4605.     public const string STOCK_REDO;
  4606.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4607. gtk+-2.0.vapi:7884.2-7884.35: error: `Gtk' already contains a definition for `STOCK_REFRESH'
  4608.     public const string STOCK_REFRESH;
  4609.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4610. gtk+-3.0.vapi:7852.2-7852.35: note: previous definition of `STOCK_REFRESH' was here
  4611.     public const string STOCK_REFRESH;
  4612.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4613. gtk+-2.0.vapi:7887.2-7887.34: error: `Gtk' already contains a definition for `STOCK_REMOVE'
  4614.     public const string STOCK_REMOVE;
  4615.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4616. gtk+-3.0.vapi:7855.2-7855.34: note: previous definition of `STOCK_REMOVE' was here
  4617.     public const string STOCK_REMOVE;
  4618.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4619. gtk+-2.0.vapi:7890.2-7890.43: error: `Gtk' already contains a definition for `STOCK_REVERT_TO_SAVED'
  4620.     public const string STOCK_REVERT_TO_SAVED;
  4621.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4622. gtk+-3.0.vapi:7858.2-7858.43: note: previous definition of `STOCK_REVERT_TO_SAVED' was here
  4623.     public const string STOCK_REVERT_TO_SAVED;
  4624.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4625. gtk+-2.0.vapi:7893.2-7893.32: error: `Gtk' already contains a definition for `STOCK_SAVE'
  4626.     public const string STOCK_SAVE;
  4627.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4628. gtk+-3.0.vapi:7861.2-7861.32: note: previous definition of `STOCK_SAVE' was here
  4629.     public const string STOCK_SAVE;
  4630.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4631. gtk+-2.0.vapi:7896.2-7896.35: error: `Gtk' already contains a definition for `STOCK_SAVE_AS'
  4632.     public const string STOCK_SAVE_AS;
  4633.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4634. gtk+-3.0.vapi:7864.2-7864.35: note: previous definition of `STOCK_SAVE_AS' was here
  4635.     public const string STOCK_SAVE_AS;
  4636.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4637. gtk+-2.0.vapi:7899.2-7899.38: error: `Gtk' already contains a definition for `STOCK_SELECT_ALL'
  4638.     public const string STOCK_SELECT_ALL;
  4639.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4640. gtk+-3.0.vapi:7867.2-7867.38: note: previous definition of `STOCK_SELECT_ALL' was here
  4641.     public const string STOCK_SELECT_ALL;
  4642.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4643. gtk+-2.0.vapi:7902.2-7902.40: error: `Gtk' already contains a definition for `STOCK_SELECT_COLOR'
  4644.     public const string STOCK_SELECT_COLOR;
  4645.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4646. gtk+-3.0.vapi:7870.2-7870.40: note: previous definition of `STOCK_SELECT_COLOR' was here
  4647.     public const string STOCK_SELECT_COLOR;
  4648.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4649. gtk+-2.0.vapi:7905.2-7905.39: error: `Gtk' already contains a definition for `STOCK_SELECT_FONT'
  4650.     public const string STOCK_SELECT_FONT;
  4651.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4652. gtk+-3.0.vapi:7873.2-7873.39: note: previous definition of `STOCK_SELECT_FONT' was here
  4653.     public const string STOCK_SELECT_FONT;
  4654.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4655. gtk+-2.0.vapi:7908.2-7908.42: error: `Gtk' already contains a definition for `STOCK_SORT_ASCENDING'
  4656.     public const string STOCK_SORT_ASCENDING;
  4657.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4658. gtk+-3.0.vapi:7876.2-7876.42: note: previous definition of `STOCK_SORT_ASCENDING' was here
  4659.     public const string STOCK_SORT_ASCENDING;
  4660.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4661. gtk+-2.0.vapi:7911.2-7911.43: error: `Gtk' already contains a definition for `STOCK_SORT_DESCENDING'
  4662.     public const string STOCK_SORT_DESCENDING;
  4663.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4664. gtk+-3.0.vapi:7879.2-7879.43: note: previous definition of `STOCK_SORT_DESCENDING' was here
  4665.     public const string STOCK_SORT_DESCENDING;
  4666.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4667. gtk+-2.0.vapi:7914.2-7914.39: error: `Gtk' already contains a definition for `STOCK_SPELL_CHECK'
  4668.     public const string STOCK_SPELL_CHECK;
  4669.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4670. gtk+-3.0.vapi:7882.2-7882.39: note: previous definition of `STOCK_SPELL_CHECK' was here
  4671.     public const string STOCK_SPELL_CHECK;
  4672.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4673. gtk+-2.0.vapi:7917.2-7917.32: error: `Gtk' already contains a definition for `STOCK_STOP'
  4674.     public const string STOCK_STOP;
  4675.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4676. gtk+-3.0.vapi:7885.2-7885.32: note: previous definition of `STOCK_STOP' was here
  4677.     public const string STOCK_STOP;
  4678.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4679. gtk+-2.0.vapi:7920.2-7920.41: error: `Gtk' already contains a definition for `STOCK_STRIKETHROUGH'
  4680.     public const string STOCK_STRIKETHROUGH;
  4681.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4682. gtk+-3.0.vapi:7888.2-7888.41: note: previous definition of `STOCK_STRIKETHROUGH' was here
  4683.     public const string STOCK_STRIKETHROUGH;
  4684.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4685. gtk+-2.0.vapi:7923.2-7923.36: error: `Gtk' already contains a definition for `STOCK_UNDELETE'
  4686.     public const string STOCK_UNDELETE;
  4687.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4688. gtk+-3.0.vapi:7891.2-7891.36: note: previous definition of `STOCK_UNDELETE' was here
  4689.     public const string STOCK_UNDELETE;
  4690.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4691. gtk+-2.0.vapi:7926.2-7926.37: error: `Gtk' already contains a definition for `STOCK_UNDERLINE'
  4692.     public const string STOCK_UNDERLINE;
  4693.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4694. gtk+-3.0.vapi:7894.2-7894.37: note: previous definition of `STOCK_UNDERLINE' was here
  4695.     public const string STOCK_UNDERLINE;
  4696.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4697. gtk+-2.0.vapi:7929.2-7929.32: error: `Gtk' already contains a definition for `STOCK_UNDO'
  4698.     public const string STOCK_UNDO;
  4699.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4700. gtk+-3.0.vapi:7897.2-7897.32: note: previous definition of `STOCK_UNDO' was here
  4701.     public const string STOCK_UNDO;
  4702.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4703. gtk+-2.0.vapi:7932.2-7932.36: error: `Gtk' already contains a definition for `STOCK_UNINDENT'
  4704.     public const string STOCK_UNINDENT;
  4705.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4706. gtk+-3.0.vapi:7900.2-7900.36: note: previous definition of `STOCK_UNINDENT' was here
  4707.     public const string STOCK_UNINDENT;
  4708.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4709. gtk+-2.0.vapi:7935.2-7935.31: error: `Gtk' already contains a definition for `STOCK_YES'
  4710.     public const string STOCK_YES;
  4711.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4712. gtk+-3.0.vapi:7903.2-7903.31: note: previous definition of `STOCK_YES' was here
  4713.     public const string STOCK_YES;
  4714.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4715. gtk+-2.0.vapi:7938.2-7938.36: error: `Gtk' already contains a definition for `STOCK_ZOOM_100'
  4716.     public const string STOCK_ZOOM_100;
  4717.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4718. gtk+-3.0.vapi:7906.2-7906.36: note: previous definition of `STOCK_ZOOM_100' was here
  4719.     public const string STOCK_ZOOM_100;
  4720.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4721. gtk+-2.0.vapi:7941.2-7941.36: error: `Gtk' already contains a definition for `STOCK_ZOOM_FIT'
  4722.     public const string STOCK_ZOOM_FIT;
  4723.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4724. gtk+-3.0.vapi:7909.2-7909.36: note: previous definition of `STOCK_ZOOM_FIT' was here
  4725.     public const string STOCK_ZOOM_FIT;
  4726.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4727. gtk+-2.0.vapi:7944.2-7944.35: error: `Gtk' already contains a definition for `STOCK_ZOOM_IN'
  4728.     public const string STOCK_ZOOM_IN;
  4729.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4730. gtk+-3.0.vapi:7912.2-7912.35: note: previous definition of `STOCK_ZOOM_IN' was here
  4731.     public const string STOCK_ZOOM_IN;
  4732.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4733. gtk+-2.0.vapi:7947.2-7947.36: error: `Gtk' already contains a definition for `STOCK_ZOOM_OUT'
  4734.     public const string STOCK_ZOOM_OUT;
  4735.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4736. gtk+-3.0.vapi:7915.2-7915.36: note: previous definition of `STOCK_ZOOM_OUT' was here
  4737.     public const string STOCK_ZOOM_OUT;
  4738.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4739. gtk+-2.0.vapi:7949.2-7949.46: error: `Gtk' already contains a definition for `TEXT_VIEW_PRIORITY_VALIDATE'
  4740.     public const int TEXT_VIEW_PRIORITY_VALIDATE;
  4741.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4742. gtk+-3.0.vapi:8065.2-8065.46: note: previous definition of `TEXT_VIEW_PRIORITY_VALIDATE' was here
  4743.     public const int TEXT_VIEW_PRIORITY_VALIDATE;
  4744.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4745. gtk+-2.0.vapi:7953.2-7953.41: error: `Gtk' already contains a definition for `accel_groups_activate'
  4746.     public static bool accel_groups_activate (GLib.Object object, uint accel_key, Gdk.ModifierType accel_mods);
  4747.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4748. gtk+-3.0.vapi:8067.2-8067.41: note: previous definition of `accel_groups_activate' was here
  4749.     public static bool accel_groups_activate (GLib.Object object, uint accel_key, Gdk.ModifierType accel_mods);
  4750.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4751. gtk+-2.0.vapi:7955.2-7955.74: error: `Gtk' already contains a definition for `accel_groups_from_object'
  4752.     public static unowned GLib.SList<Gtk.AccelGroup> accel_groups_from_object (GLib.Object object);
  4753.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4754. gtk+-3.0.vapi:8069.2-8069.74: note: previous definition of `accel_groups_from_object' was here
  4755.     public static unowned GLib.SList<Gtk.AccelGroup> accel_groups_from_object (GLib.Object object);
  4756.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4757. gtk+-2.0.vapi:7957.2-7957.52: error: `Gtk' already contains a definition for `accelerator_get_default_mod_mask'
  4758.     public static uint accelerator_get_default_mod_mask ();
  4759.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4760. gtk+-3.0.vapi:8071.2-8071.64: note: previous definition of `accelerator_get_default_mod_mask' was here
  4761.     public static Gdk.ModifierType accelerator_get_default_mod_mask ();
  4762.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4763. gtk+-2.0.vapi:7959.2-7959.51: error: `Gtk' already contains a definition for `accelerator_get_label'
  4764.     public static unowned string accelerator_get_label (uint accelerator_key, Gdk.ModifierType accelerator_mods);
  4765.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4766. gtk+-3.0.vapi:8073.2-8073.51: note: previous definition of `accelerator_get_label' was here
  4767.     public static unowned string accelerator_get_label (uint accelerator_key, Gdk.ModifierType accelerator_mods);
  4768.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4769. gtk+-2.0.vapi:7961.2-7961.46: error: `Gtk' already contains a definition for `accelerator_name'
  4770.     public static unowned string accelerator_name (uint accelerator_key, Gdk.ModifierType accelerator_mods);
  4771.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4772. gtk+-3.0.vapi:8077.2-8077.46: note: previous definition of `accelerator_name' was here
  4773.     public static unowned string accelerator_name (uint accelerator_key, Gdk.ModifierType accelerator_mods);
  4774.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4775. gtk+-2.0.vapi:7963.2-7963.37: error: `Gtk' already contains a definition for `accelerator_parse'
  4776.     public static void accelerator_parse (string accelerator, out uint accelerator_key, out Gdk.ModifierType accelerator_mods);
  4777.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4778. gtk+-3.0.vapi:8081.2-8081.37: note: previous definition of `accelerator_parse' was here
  4779.     public static void accelerator_parse (string accelerator, out uint accelerator_key, out Gdk.ModifierType accelerator_mods);
  4780.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4781. gtk+-2.0.vapi:7965.2-7965.52: error: `Gtk' already contains a definition for `accelerator_set_default_mod_mask'
  4782.     public static void accelerator_set_default_mod_mask (Gdk.ModifierType default_mod_mask);
  4783.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4784. gtk+-3.0.vapi:8085.2-8085.52: note: previous definition of `accelerator_set_default_mod_mask' was here
  4785.     public static void accelerator_set_default_mod_mask (Gdk.ModifierType default_mod_mask);
  4786.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4787. gtk+-2.0.vapi:7967.2-7967.37: error: `Gtk' already contains a definition for `accelerator_valid'
  4788.     public static bool accelerator_valid (uint keyval, Gdk.ModifierType modifiers);
  4789.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4790. gtk+-3.0.vapi:8087.2-8087.37: note: previous definition of `accelerator_valid' was here
  4791.     public static bool accelerator_valid (uint keyval, Gdk.ModifierType modifiers);
  4792.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4793. gtk+-2.0.vapi:7969.2-7969.51: error: `Gtk' already contains a definition for `alternative_dialog_button_order'
  4794.     public static bool alternative_dialog_button_order (Gdk.Screen screen);
  4795.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4796. gtk+-3.0.vapi:8089.2-8089.51: note: previous definition of `alternative_dialog_button_order' was here
  4797.     public static bool alternative_dialog_button_order (Gdk.Screen screen);
  4798.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4799. gtk+-2.0.vapi:7971.2-7971.37: error: `Gtk' already contains a definition for `bindings_activate'
  4800.     public static bool bindings_activate (Gtk.Object object, uint keyval, Gdk.ModifierType modifiers);
  4801.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4802. gtk+-3.0.vapi:8091.2-8091.37: note: previous definition of `bindings_activate' was here
  4803.     public static bool bindings_activate (GLib.Object object, uint keyval, Gdk.ModifierType modifiers);
  4804.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4805. gtk+-2.0.vapi:7973.2-7973.43: error: `Gtk' already contains a definition for `bindings_activate_event'
  4806.     public static bool bindings_activate_event (Gtk.Object object, Gdk.EventKey event);
  4807.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4808. gtk+-3.0.vapi:8093.2-8093.43: note: previous definition of `bindings_activate_event' was here
  4809.     public static bool bindings_activate_event (GLib.Object object, Gdk.EventKey event);
  4810.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4811. gtk+-2.0.vapi:7975.2-7975.43: error: `Gtk' already contains a definition for `check_version'
  4812.     public static unowned string check_version (uint required_major, uint required_minor, uint required_micro);
  4813.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4814. gtk+-3.0.vapi:8099.2-8099.43: note: previous definition of `check_version' was here
  4815.     public static unowned string check_version (uint required_major, uint required_minor, uint required_micro);
  4816.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4817. gtk+-2.0.vapi:7977.2-7977.37: error: `Gtk' already contains a definition for `disable_setlocale'
  4818.     public static void disable_setlocale ();
  4819.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4820. gtk+-3.0.vapi:8105.2-8105.37: note: previous definition of `disable_setlocale' was here
  4821.     public static void disable_setlocale ();
  4822.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4823. gtk+-2.0.vapi:7979.2-7979.49: error: `Gtk' already contains a definition for `drag_begin'
  4824.     public static unowned Gdk.DragContext drag_begin (Gtk.Widget widget, Gtk.TargetList targets, Gdk.DragAction actions, int button, Gdk.Event event);
  4825.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4826. gtk+-3.0.vapi:8109.2-8109.49: note: previous definition of `drag_begin' was here
  4827.     public static unowned Gdk.DragContext drag_begin (Gtk.Widget widget, Gtk.TargetList targets, Gdk.DragAction actions, int button, Gdk.Event event);
  4828.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4829. gtk+-2.0.vapi:7981.2-7981.40: error: `Gtk' already contains a definition for `drag_check_threshold'
  4830.     public static bool drag_check_threshold (Gtk.Widget widget, int start_x, int start_y, int current_x, int current_y);
  4831.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4832. gtk+-3.0.vapi:8111.2-8111.40: note: previous definition of `drag_check_threshold' was here
  4833.     public static bool drag_check_threshold (Gtk.Widget widget, int start_x, int start_y, int current_x, int current_y);
  4834.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4835. gtk+-2.0.vapi:7983.2-7983.47: error: `Gtk' already contains a definition for `drag_dest_add_image_targets'
  4836.     public static void drag_dest_add_image_targets (Gtk.Widget widget);
  4837.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4838. gtk+-3.0.vapi:8113.2-8113.47: note: previous definition of `drag_dest_add_image_targets' was here
  4839.     public static void drag_dest_add_image_targets (Gtk.Widget widget);
  4840.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4841. gtk+-2.0.vapi:7985.2-7985.46: error: `Gtk' already contains a definition for `drag_dest_add_text_targets'
  4842.     public static void drag_dest_add_text_targets (Gtk.Widget widget);
  4843.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4844. gtk+-3.0.vapi:8115.2-8115.46: note: previous definition of `drag_dest_add_text_targets' was here
  4845.     public static void drag_dest_add_text_targets (Gtk.Widget widget);
  4846.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4847. gtk+-2.0.vapi:7987.2-7987.45: error: `Gtk' already contains a definition for `drag_dest_add_uri_targets'
  4848.     public static void drag_dest_add_uri_targets (Gtk.Widget widget);
  4849.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4850. gtk+-3.0.vapi:8117.2-8117.45: note: previous definition of `drag_dest_add_uri_targets' was here
  4851.     public static void drag_dest_add_uri_targets (Gtk.Widget widget);
  4852.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4853. gtk+-2.0.vapi:7989.2-7989.45: error: `Gtk' already contains a definition for `drag_dest_find_target'
  4854.     public static Gdk.Atom drag_dest_find_target (Gtk.Widget widget, Gdk.DragContext context, Gtk.TargetList target_list);
  4855.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4856. gtk+-3.0.vapi:8119.2-8119.45: note: previous definition of `drag_dest_find_target' was here
  4857.     public static Gdk.Atom drag_dest_find_target (Gtk.Widget widget, Gdk.DragContext context, Gtk.TargetList target_list);
  4858.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4859. gtk+-2.0.vapi:7991.2-7991.63: error: `Gtk' already contains a definition for `drag_dest_get_target_list'
  4860.     public static unowned Gtk.TargetList drag_dest_get_target_list (Gtk.Widget widget);
  4861.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4862. gtk+-3.0.vapi:8121.2-8121.63: note: previous definition of `drag_dest_get_target_list' was here
  4863.     public static unowned Gtk.TargetList drag_dest_get_target_list (Gtk.Widget widget);
  4864.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4865. gtk+-2.0.vapi:7993.2-7993.46: error: `Gtk' already contains a definition for `drag_dest_get_track_motion'
  4866.     public static bool drag_dest_get_track_motion (Gtk.Widget widget);
  4867.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4868. gtk+-3.0.vapi:8123.2-8123.46: note: previous definition of `drag_dest_get_track_motion' was here
  4869.     public static bool drag_dest_get_track_motion (Gtk.Widget widget);
  4870.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4871. gtk+-2.0.vapi:7995.2-7995.33: error: `Gtk' already contains a definition for `drag_dest_set'
  4872.     public static void drag_dest_set (Gtk.Widget widget, Gtk.DestDefaults flags, Gtk.TargetEntry[] targets, Gdk.DragAction actions);
  4873.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4874. gtk+-3.0.vapi:8125.2-8125.33: note: previous definition of `drag_dest_set' was here
  4875.     public static void drag_dest_set (Gtk.Widget widget, Gtk.DestDefaults flags, Gtk.TargetEntry[] targets, Gdk.DragAction actions);
  4876.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4877. gtk+-2.0.vapi:7997.2-7997.39: error: `Gtk' already contains a definition for `drag_dest_set_proxy'
  4878.     public static void drag_dest_set_proxy (Gtk.Widget widget, Gdk.Window proxy_window, Gdk.DragProtocol protocol, bool use_coordinates);
  4879.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4880. gtk+-3.0.vapi:8127.2-8127.39: note: previous definition of `drag_dest_set_proxy' was here
  4881.     public static void drag_dest_set_proxy (Gtk.Widget widget, Gdk.Window proxy_window, Gdk.DragProtocol protocol, bool use_coordinates);
  4882.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4883. gtk+-2.0.vapi:7999.2-7999.45: error: `Gtk' already contains a definition for `drag_dest_set_target_list'
  4884.     public static void drag_dest_set_target_list (Gtk.Widget widget, Gtk.TargetList target_list);
  4885.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4886. gtk+-3.0.vapi:8129.2-8129.45: note: previous definition of `drag_dest_set_target_list' was here
  4887.     public static void drag_dest_set_target_list (Gtk.Widget widget, Gtk.TargetList target_list);
  4888.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4889. gtk+-2.0.vapi:8001.2-8001.46: error: `Gtk' already contains a definition for `drag_dest_set_track_motion'
  4890.     public static void drag_dest_set_track_motion (Gtk.Widget widget, bool track_motion);
  4891.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4892. gtk+-3.0.vapi:8131.2-8131.46: note: previous definition of `drag_dest_set_track_motion' was here
  4893.     public static void drag_dest_set_track_motion (Gtk.Widget widget, bool track_motion);
  4894.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4895. gtk+-2.0.vapi:8003.2-8003.35: error: `Gtk' already contains a definition for `drag_dest_unset'
  4896.     public static void drag_dest_unset (Gtk.Widget widget);
  4897.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4898. gtk+-3.0.vapi:8133.2-8133.35: note: previous definition of `drag_dest_unset' was here
  4899.     public static void drag_dest_unset (Gtk.Widget widget);
  4900.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4901. gtk+-2.0.vapi:8005.2-8005.31: error: `Gtk' already contains a definition for `drag_finish'
  4902.     public static void drag_finish (Gdk.DragContext context, bool success, bool del, uint32 time_);
  4903.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4904. gtk+-3.0.vapi:8135.2-8135.31: note: previous definition of `drag_finish' was here
  4905.     public static void drag_finish (Gdk.DragContext context, bool success, bool del, uint32 time_);
  4906.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4907. gtk+-2.0.vapi:8007.2-8007.33: error: `Gtk' already contains a definition for `drag_get_data'
  4908.     public static void drag_get_data (Gtk.Widget widget, Gdk.DragContext context, Gdk.Atom target, uint32 time_);
  4909.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4910. gtk+-3.0.vapi:8137.2-8137.33: note: previous definition of `drag_get_data' was here
  4911.     public static void drag_get_data (Gtk.Widget widget, Gdk.DragContext context, Gdk.Atom target, uint32 time_);
  4912.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4913. gtk+-2.0.vapi:8009.2-8009.56: error: `Gtk' already contains a definition for `drag_get_source_widget'
  4914.     public static unowned Gtk.Widget drag_get_source_widget (Gdk.DragContext context);
  4915.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4916. gtk+-3.0.vapi:8139.2-8139.56: note: previous definition of `drag_get_source_widget' was here
  4917.     public static unowned Gtk.Widget drag_get_source_widget (Gdk.DragContext context);
  4918.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4919. gtk+-2.0.vapi:8011.2-8011.34: error: `Gtk' already contains a definition for `drag_highlight'
  4920.     public static void drag_highlight (Gtk.Widget widget);
  4921.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4922. gtk+-3.0.vapi:8141.2-8141.34: note: previous definition of `drag_highlight' was here
  4923.     public static void drag_highlight (Gtk.Widget widget);
  4924.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4925. gtk+-2.0.vapi:8013.2-8013.41: error: `Gtk' already contains a definition for `drag_set_icon_default'
  4926.     public static void drag_set_icon_default (Gdk.DragContext context);
  4927.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4928. gtk+-3.0.vapi:8143.2-8143.41: note: previous definition of `drag_set_icon_default' was here
  4929.     public static void drag_set_icon_default (Gdk.DragContext context);
  4930.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4931. gtk+-2.0.vapi:8015.2-8015.38: error: `Gtk' already contains a definition for `drag_set_icon_name'
  4932.     public static void drag_set_icon_name (Gdk.DragContext context, string icon_name, int hot_x, int hot_y);
  4933.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4934. gtk+-3.0.vapi:8147.2-8147.38: note: previous definition of `drag_set_icon_name' was here
  4935.     public static void drag_set_icon_name (Gdk.DragContext context, string icon_name, int hot_x, int hot_y);
  4936.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4937. gtk+-2.0.vapi:8017.2-8017.40: error: `Gtk' already contains a definition for `drag_set_icon_pixbuf'
  4938.     public static void drag_set_icon_pixbuf (Gdk.DragContext context, Gdk.Pixbuf pixbuf, int hot_x, int hot_y);
  4939.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4940. gtk+-3.0.vapi:8149.2-8149.40: note: previous definition of `drag_set_icon_pixbuf' was here
  4941.     public static void drag_set_icon_pixbuf (Gdk.DragContext context, Gdk.Pixbuf pixbuf, int hot_x, int hot_y);
  4942.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4943. gtk+-2.0.vapi:8021.2-8021.39: error: `Gtk' already contains a definition for `drag_set_icon_stock'
  4944.     public static void drag_set_icon_stock (Gdk.DragContext context, string stock_id, int hot_x, int hot_y);
  4945.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4946. gtk+-3.0.vapi:8151.2-8151.39: note: previous definition of `drag_set_icon_stock' was here
  4947.     public static void drag_set_icon_stock (Gdk.DragContext context, string stock_id, int hot_x, int hot_y);
  4948.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4949. gtk+-2.0.vapi:8023.2-8023.40: error: `Gtk' already contains a definition for `drag_set_icon_widget'
  4950.     public static void drag_set_icon_widget (Gdk.DragContext context, Gtk.Widget widget, int hot_x, int hot_y);
  4951.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4952. gtk+-3.0.vapi:8155.2-8155.40: note: previous definition of `drag_set_icon_widget' was here
  4953.     public static void drag_set_icon_widget (Gdk.DragContext context, Gtk.Widget widget, int hot_x, int hot_y);
  4954.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4955. gtk+-2.0.vapi:8025.2-8025.49: error: `Gtk' already contains a definition for `drag_source_add_image_targets'
  4956.     public static void drag_source_add_image_targets (Gtk.Widget widget);
  4957.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4958. gtk+-3.0.vapi:8157.2-8157.49: note: previous definition of `drag_source_add_image_targets' was here
  4959.     public static void drag_source_add_image_targets (Gtk.Widget widget);
  4960.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4961. gtk+-2.0.vapi:8027.2-8027.48: error: `Gtk' already contains a definition for `drag_source_add_text_targets'
  4962.     public static void drag_source_add_text_targets (Gtk.Widget widget);
  4963.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4964. gtk+-3.0.vapi:8159.2-8159.48: note: previous definition of `drag_source_add_text_targets' was here
  4965.     public static void drag_source_add_text_targets (Gtk.Widget widget);
  4966.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4967. gtk+-2.0.vapi:8029.2-8029.47: error: `Gtk' already contains a definition for `drag_source_add_uri_targets'
  4968.     public static void drag_source_add_uri_targets (Gtk.Widget widget);
  4969.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4970. gtk+-3.0.vapi:8161.2-8161.47: note: previous definition of `drag_source_add_uri_targets' was here
  4971.     public static void drag_source_add_uri_targets (Gtk.Widget widget);
  4972.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4973. gtk+-2.0.vapi:8031.2-8031.65: error: `Gtk' already contains a definition for `drag_source_get_target_list'
  4974.     public static unowned Gtk.TargetList drag_source_get_target_list (Gtk.Widget widget);
  4975.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4976. gtk+-3.0.vapi:8163.2-8163.65: note: previous definition of `drag_source_get_target_list' was here
  4977.     public static unowned Gtk.TargetList drag_source_get_target_list (Gtk.Widget widget);
  4978.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4979. gtk+-2.0.vapi:8033.2-8033.35: error: `Gtk' already contains a definition for `drag_source_set'
  4980.     public static void drag_source_set (Gtk.Widget widget, Gdk.ModifierType start_button_mask, Gtk.TargetEntry[] targets, Gdk.DragAction actions);
  4981.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4982. gtk+-3.0.vapi:8165.2-8165.35: note: previous definition of `drag_source_set' was here
  4983.     public static void drag_source_set (Gtk.Widget widget, Gdk.ModifierType start_button_mask, Gtk.TargetEntry[] targets, Gdk.DragAction actions);
  4984.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4985. gtk+-2.0.vapi:8037.2-8037.45: error: `Gtk' already contains a definition for `drag_source_set_icon_name'
  4986.     public static void drag_source_set_icon_name (Gtk.Widget widget, string icon_name);
  4987.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4988. gtk+-3.0.vapi:8169.2-8169.45: note: previous definition of `drag_source_set_icon_name' was here
  4989.     public static void drag_source_set_icon_name (Gtk.Widget widget, string icon_name);
  4990.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4991. gtk+-2.0.vapi:8039.2-8039.47: error: `Gtk' already contains a definition for `drag_source_set_icon_pixbuf'
  4992.     public static void drag_source_set_icon_pixbuf (Gtk.Widget widget, Gdk.Pixbuf pixbuf);
  4993.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4994. gtk+-3.0.vapi:8171.2-8171.47: note: previous definition of `drag_source_set_icon_pixbuf' was here
  4995.     public static void drag_source_set_icon_pixbuf (Gtk.Widget widget, Gdk.Pixbuf pixbuf);
  4996.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4997. gtk+-2.0.vapi:8041.2-8041.46: error: `Gtk' already contains a definition for `drag_source_set_icon_stock'
  4998.     public static void drag_source_set_icon_stock (Gtk.Widget widget, string stock_id);
  4999.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5000. gtk+-3.0.vapi:8173.2-8173.46: note: previous definition of `drag_source_set_icon_stock' was here
  5001.     public static void drag_source_set_icon_stock (Gtk.Widget widget, string stock_id);
  5002.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5003. gtk+-2.0.vapi:8043.2-8043.47: error: `Gtk' already contains a definition for `drag_source_set_target_list'
  5004.     public static void drag_source_set_target_list (Gtk.Widget widget, Gtk.TargetList target_list);
  5005.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5006. gtk+-3.0.vapi:8175.2-8175.47: note: previous definition of `drag_source_set_target_list' was here
  5007.     public static void drag_source_set_target_list (Gtk.Widget widget, Gtk.TargetList target_list);
  5008.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5009. gtk+-2.0.vapi:8045.2-8045.37: error: `Gtk' already contains a definition for `drag_source_unset'
  5010.     public static void drag_source_unset (Gtk.Widget widget);
  5011.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5012. gtk+-3.0.vapi:8177.2-8177.37: note: previous definition of `drag_source_unset' was here
  5013.     public static void drag_source_unset (Gtk.Widget widget);
  5014.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5015. gtk+-2.0.vapi:8047.2-8047.36: error: `Gtk' already contains a definition for `drag_unhighlight'
  5016.     public static void drag_unhighlight (Gtk.Widget widget);
  5017.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5018. gtk+-3.0.vapi:8179.2-8179.36: note: previous definition of `drag_unhighlight' was here
  5019.     public static void drag_unhighlight (Gtk.Widget widget);
  5020.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5021. gtk+-2.0.vapi:8049.2-8049.41: error: `Gtk' already contains a definition for `draw_insertion_cursor'
  5022.     public static void draw_insertion_cursor (Gtk.Widget widget, Gdk.Drawable drawable, Gdk.Rectangle area, Gdk.Rectangle location, bool is_primary, Gtk.TextDirection direction, bool draw_arrow);
  5023.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5024. gtk+-3.0.vapi:8181.2-8181.41: note: previous definition of `draw_insertion_cursor' was here
  5025.     public static void draw_insertion_cursor (Gtk.Widget widget, Cairo.Context cr, Gdk.Rectangle location, bool is_primary, Gtk.TextDirection direction, bool draw_arrow);
  5026.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5027. gtk+-2.0.vapi:8051.2-8051.34: error: `Gtk' already contains a definition for `events_pending'
  5028.     public static bool events_pending ();
  5029.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5030. gtk+-3.0.vapi:8183.2-8183.34: note: previous definition of `events_pending' was here
  5031.     public static bool events_pending ();
  5032.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5033. gtk+-2.0.vapi:8057.2-8057.42: error: `Gtk' already contains a definition for `get_current_event'
  5034.     public static Gdk.Event get_current_event ();
  5035.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5036. gtk+-3.0.vapi:8187.2-8187.42: note: previous definition of `get_current_event' was here
  5037.     public static Gdk.Event get_current_event ();
  5038.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5039. gtk+-2.0.vapi:8059.2-8059.43: error: `Gtk' already contains a definition for `get_current_event_state'
  5040.     public static bool get_current_event_state (out Gdk.ModifierType state);
  5041.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5042. gtk+-3.0.vapi:8191.2-8191.43: note: previous definition of `get_current_event_state' was here
  5043.     public static bool get_current_event_state (out Gdk.ModifierType state);
  5044.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5045. gtk+-2.0.vapi:8061.2-8061.44: error: `Gtk' already contains a definition for `get_current_event_time'
  5046.     public static uint32 get_current_event_time ();
  5047.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5048. gtk+-3.0.vapi:8193.2-8193.44: note: previous definition of `get_current_event_time' was here
  5049.     public static uint32 get_current_event_time ();
  5050.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5051. gtk+-2.0.vapi:8063.2-8063.58: error: `Gtk' already contains a definition for `get_default_language'
  5052.     public static unowned Pango.Language get_default_language ();
  5053.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5054. gtk+-3.0.vapi:8197.2-8197.58: note: previous definition of `get_default_language' was here
  5055.     public static unowned Pango.Language get_default_language ();
  5056.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5057. gtk+-2.0.vapi:8065.2-8065.50: error: `Gtk' already contains a definition for `get_event_widget'
  5058.     public static unowned Gtk.Widget get_event_widget (Gdk.Event event);
  5059.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5060. gtk+-3.0.vapi:8199.2-8199.50: note: previous definition of `get_event_widget' was here
  5061.     public static unowned Gtk.Widget get_event_widget (Gdk.Event event);
  5062.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5063. gtk+-2.0.vapi:8067.2-8067.48: error: `Gtk' already contains a definition for `get_option_group'
  5064.     public static GLib.OptionGroup get_option_group (bool open_default_display);
  5065.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5066. gtk+-3.0.vapi:8209.2-8209.48: note: previous definition of `get_option_group' was here
  5067.     public static GLib.OptionGroup get_option_group (bool open_default_display);
  5068.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5069. gtk+-2.0.vapi:8069.2-8069.28: error: `Gtk' already contains a definition for `grab_add'
  5070.     public static void grab_add (Gtk.Widget widget);
  5071.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5072. gtk+-3.0.vapi:8211.2-8211.28: note: previous definition of `grab_add' was here
  5073.     public static void grab_add (Gtk.Widget widget);
  5074.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5075. gtk+-2.0.vapi:8071.2-8071.50: error: `Gtk' already contains a definition for `grab_get_current'
  5076.     public static unowned Gtk.Widget grab_get_current ();
  5077.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5078. gtk+-3.0.vapi:8213.2-8213.50: note: previous definition of `grab_get_current' was here
  5079.     public static unowned Gtk.Widget grab_get_current ();
  5080.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5081. gtk+-2.0.vapi:8073.2-8073.31: error: `Gtk' already contains a definition for `grab_remove'
  5082.     public static void grab_remove (Gtk.Widget widget);
  5083.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5084. gtk+-3.0.vapi:8215.2-8215.31: note: previous definition of `grab_remove' was here
  5085.     public static void grab_remove (Gtk.Widget widget);
  5086.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5087. gtk+-2.0.vapi:8075.2-8075.47: error: `Gtk' already contains a definition for `icon_size_from_name'
  5088.     public static Gtk.IconSize icon_size_from_name (string name);
  5089.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5090. gtk+-3.0.vapi:8217.2-8217.47: note: previous definition of `icon_size_from_name' was here
  5091.     public static Gtk.IconSize icon_size_from_name (string name);
  5092.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5093. gtk+-2.0.vapi:8077.2-8077.48: error: `Gtk' already contains a definition for `icon_size_get_name'
  5094.     public static unowned string icon_size_get_name (Gtk.IconSize size);
  5095.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5096. gtk+-3.0.vapi:8219.2-8219.48: note: previous definition of `icon_size_get_name' was here
  5097.     public static unowned string icon_size_get_name (Gtk.IconSize size);
  5098.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5099. gtk+-2.0.vapi:8079.2-8079.36: error: `Gtk' already contains a definition for `icon_size_lookup'
  5100.     public static bool icon_size_lookup (Gtk.IconSize size, out int width, out int height);
  5101.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5102. gtk+-3.0.vapi:8221.2-8221.36: note: previous definition of `icon_size_lookup' was here
  5103.     public static bool icon_size_lookup (Gtk.IconSize size, out int width, out int height);
  5104.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5105. gtk+-2.0.vapi:8081.2-8081.49: error: `Gtk' already contains a definition for `icon_size_lookup_for_settings'
  5106.     public static bool icon_size_lookup_for_settings (Gtk.Settings settings, Gtk.IconSize size, out int width, out int height);
  5107.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5108. gtk+-3.0.vapi:8223.2-8223.49: note: previous definition of `icon_size_lookup_for_settings' was here
  5109.     public static bool icon_size_lookup_for_settings (Gtk.Settings settings, Gtk.IconSize size, out int width, out int height);
  5110.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5111. gtk+-2.0.vapi:8083.2-8083.46: error: `Gtk' already contains a definition for `icon_size_register'
  5112.     public static Gtk.IconSize icon_size_register (string name, int width, int height);
  5113.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5114. gtk+-3.0.vapi:8225.2-8225.46: note: previous definition of `icon_size_register' was here
  5115.     public static Gtk.IconSize icon_size_register (string name, int width, int height);
  5116.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5117. gtk+-2.0.vapi:8085.2-8085.44: error: `Gtk' already contains a definition for `icon_size_register_alias'
  5118.     public static void icon_size_register_alias (string alias, Gtk.IconSize target);
  5119.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5120. gtk+-3.0.vapi:8227.2-8227.44: note: previous definition of `icon_size_register_alias' was here
  5121.     public static void icon_size_register_alias (string alias, Gtk.IconSize target);
  5122.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5123. gtk+-2.0.vapi:8089.2-8089.24: error: `Gtk' already contains a definition for `init'
  5124.     public static void init ([CCode (array_length_pos = 0.9)] ref unowned string[] argv);
  5125.     ^^^^^^^^^^^^^^^^^^^^^^^
  5126. gtk+-3.0.vapi:8229.2-8229.24: note: previous definition of `init' was here
  5127.     public static void init ([CCode (array_length_pos = 0.9)] ref unowned string[] argv);
  5128.     ^^^^^^^^^^^^^^^^^^^^^^^
  5129. gtk+-2.0.vapi:8093.2-8093.30: error: `Gtk' already contains a definition for `init_check'
  5130.     public static bool init_check ([CCode (array_length_pos = 0.9)] ref unowned string[] argv);
  5131.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5132. gtk+-3.0.vapi:8231.2-8231.30: note: previous definition of `init_check' was here
  5133.     public static bool init_check ([CCode (array_length_pos = 0.9)] ref unowned string[] argv);
  5134.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5135. gtk+-2.0.vapi:8095.2-8095.34: error: `Gtk' already contains a definition for `init_with_args'
  5136.     public static bool init_with_args ([CCode (array_length_pos = 0.9)] ref unowned string[] argv, string parameter_string, [CCode (array_length = false)] GLib.OptionEntry[] entries, string? translation_domain) throws GLib.Error;
  5137.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5138. gtk+-3.0.vapi:8233.2-8233.34: note: previous definition of `init_with_args' was here
  5139.     public static bool init_with_args ([CCode (array_length_pos = 0.9)] ref unowned string[] argv, string parameter_string, [CCode (array_length = false)] GLib.OptionEntry[] entries, string? translation_domain) throws GLib.Error;
  5140.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5141. gtk+-2.0.vapi:8097.2-8097.39: error: `Gtk' already contains a definition for `key_snooper_install'
  5142.     public static uint key_snooper_install (Gtk.KeySnoopFunc snooper, void* func_data);
  5143.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5144. gtk+-3.0.vapi:8235.2-8235.39: note: previous definition of `key_snooper_install' was here
  5145.     public static uint key_snooper_install (Gtk.KeySnoopFunc snooper, void* func_data);
  5146.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5147. gtk+-2.0.vapi:8099.2-8099.38: error: `Gtk' already contains a definition for `key_snooper_remove'
  5148.     public static void key_snooper_remove (uint snooper_handler_id);
  5149.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5150. gtk+-3.0.vapi:8237.2-8237.38: note: previous definition of `key_snooper_remove' was here
  5151.     public static void key_snooper_remove (uint snooper_handler_id);
  5152.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5153. gtk+-2.0.vapi:8101.2-8101.24: error: `Gtk' already contains a definition for `main'
  5154.     public static void main ();
  5155.     ^^^^^^^^^^^^^^^^^^^^^^^
  5156. gtk+-3.0.vapi:8239.2-8239.24: note: previous definition of `main' was here
  5157.     public static void main ();
  5158.     ^^^^^^^^^^^^^^^^^^^^^^^
  5159. gtk+-2.0.vapi:8103.2-8103.33: error: `Gtk' already contains a definition for `main_do_event'
  5160.     public static void main_do_event (Gdk.Event event);
  5161.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5162. gtk+-3.0.vapi:8241.2-8241.33: note: previous definition of `main_do_event' was here
  5163.     public static void main_do_event (Gdk.Event event);
  5164.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5165. gtk+-2.0.vapi:8105.2-8105.34: error: `Gtk' already contains a definition for `main_iteration'
  5166.     public static bool main_iteration ();
  5167.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5168. gtk+-3.0.vapi:8243.2-8243.34: note: previous definition of `main_iteration' was here
  5169.     public static bool main_iteration ();
  5170.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5171. gtk+-2.0.vapi:8107.2-8107.37: error: `Gtk' already contains a definition for `main_iteration_do'
  5172.     public static bool main_iteration_do (bool blocking);
  5173.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5174. gtk+-3.0.vapi:8245.2-8245.37: note: previous definition of `main_iteration_do' was here
  5175.     public static bool main_iteration_do (bool blocking);
  5176.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5177. gtk+-2.0.vapi:8109.2-8109.30: error: `Gtk' already contains a definition for `main_level'
  5178.     public static uint main_level ();
  5179.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5180. gtk+-3.0.vapi:8247.2-8247.30: note: previous definition of `main_level' was here
  5181.     public static uint main_level ();
  5182.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5183. gtk+-2.0.vapi:8111.2-8111.29: error: `Gtk' already contains a definition for `main_quit'
  5184.     public static void main_quit ();
  5185.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5186. gtk+-3.0.vapi:8249.2-8249.29: note: previous definition of `main_quit' was here
  5187.     public static void main_quit ();
  5188.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5189. gtk+-2.0.vapi:8113.2-8113.31: error: `Gtk' already contains a definition for `paint_arrow'
  5190.     public static void paint_arrow (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, Gtk.ArrowType arrow_type, bool fill, int x, int y, int width, int height);
  5191.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5192. gtk+-3.0.vapi:8251.2-8251.31: note: previous definition of `paint_arrow' was here
  5193.     public static void paint_arrow (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, Gtk.ArrowType arrow_type, bool fill, int x, int y, int width, int height);
  5194.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5195. gtk+-2.0.vapi:8115.2-8115.29: error: `Gtk' already contains a definition for `paint_box'
  5196.     public static void paint_box (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5197.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5198. gtk+-3.0.vapi:8253.2-8253.29: note: previous definition of `paint_box' was here
  5199.     public static void paint_box (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5200.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5201. gtk+-2.0.vapi:8117.2-8117.33: error: `Gtk' already contains a definition for `paint_box_gap'
  5202.     public static void paint_box_gap (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width);
  5203.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5204. gtk+-3.0.vapi:8255.2-8255.33: note: previous definition of `paint_box_gap' was here
  5205.     public static void paint_box_gap (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width);
  5206.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5207. gtk+-2.0.vapi:8119.2-8119.31: error: `Gtk' already contains a definition for `paint_check'
  5208.     public static void paint_check (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5209.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5210. gtk+-3.0.vapi:8257.2-8257.31: note: previous definition of `paint_check' was here
  5211.     public static void paint_check (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5212.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5213. gtk+-2.0.vapi:8121.2-8121.33: error: `Gtk' already contains a definition for `paint_diamond'
  5214.     public static void paint_diamond (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5215.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5216. gtk+-3.0.vapi:8259.2-8259.33: note: previous definition of `paint_diamond' was here
  5217.     public static void paint_diamond (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5218.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5219. gtk+-2.0.vapi:8123.2-8123.34: error: `Gtk' already contains a definition for `paint_expander'
  5220.     public static void paint_expander (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, Gtk.ExpanderStyle expander_style);
  5221.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5222. gtk+-3.0.vapi:8261.2-8261.34: note: previous definition of `paint_expander' was here
  5223.     public static void paint_expander (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.Widget? widget, string? detail, int x, int y, Gtk.ExpanderStyle expander_style);
  5224.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5225. gtk+-2.0.vapi:8125.2-8125.35: error: `Gtk' already contains a definition for `paint_extension'
  5226.     public static void paint_extension (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side);
  5227.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5228. gtk+-3.0.vapi:8263.2-8263.35: note: previous definition of `paint_extension' was here
  5229.     public static void paint_extension (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side);
  5230.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5231. gtk+-2.0.vapi:8127.2-8127.34: error: `Gtk' already contains a definition for `paint_flat_box'
  5232.     public static void paint_flat_box (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5233.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5234. gtk+-3.0.vapi:8265.2-8265.34: note: previous definition of `paint_flat_box' was here
  5235.     public static void paint_flat_box (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5236.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5237. gtk+-2.0.vapi:8129.2-8129.31: error: `Gtk' already contains a definition for `paint_focus'
  5238.     public static void paint_focus (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5239.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5240. gtk+-3.0.vapi:8267.2-8267.31: note: previous definition of `paint_focus' was here
  5241.     public static void paint_focus (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5242.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5243. gtk+-2.0.vapi:8131.2-8131.32: error: `Gtk' already contains a definition for `paint_handle'
  5244.     public static void paint_handle (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.Orientation orientation);
  5245.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5246. gtk+-3.0.vapi:8269.2-8269.32: note: previous definition of `paint_handle' was here
  5247.     public static void paint_handle (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.Orientation orientation);
  5248.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5249. gtk+-2.0.vapi:8133.2-8133.31: error: `Gtk' already contains a definition for `paint_hline'
  5250.     public static void paint_hline (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x1, int x2, int y);
  5251.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5252. gtk+-3.0.vapi:8271.2-8271.31: note: previous definition of `paint_hline' was here
  5253.     public static void paint_hline (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.Widget? widget, string? detail, int x1, int x2, int y);
  5254.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5255. gtk+-2.0.vapi:8135.2-8135.32: error: `Gtk' already contains a definition for `paint_layout'
  5256.     public static void paint_layout (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, bool use_text, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, Pango.Layout layout);
  5257.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5258. gtk+-3.0.vapi:8273.2-8273.32: note: previous definition of `paint_layout' was here
  5259.     public static void paint_layout (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, bool use_text, Gtk.Widget? widget, string? detail, int x, int y, Pango.Layout layout);
  5260.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5261. gtk+-2.0.vapi:8137.2-8137.32: error: `Gtk' already contains a definition for `paint_option'
  5262.     public static void paint_option (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5263.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5264. gtk+-3.0.vapi:8275.2-8275.32: note: previous definition of `paint_option' was here
  5265.     public static void paint_option (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5266.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5267. gtk+-2.0.vapi:8141.2-8141.37: error: `Gtk' already contains a definition for `paint_resize_grip'
  5268.     public static void paint_resize_grip (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, Gdk.WindowEdge edge, int x, int y, int width, int height);
  5269.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5270. gtk+-3.0.vapi:8277.2-8277.37: note: previous definition of `paint_resize_grip' was here
  5271.     public static void paint_resize_grip (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.Widget? widget, string? detail, Gdk.WindowEdge edge, int x, int y, int width, int height);
  5272.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5273. gtk+-2.0.vapi:8143.2-8143.32: error: `Gtk' already contains a definition for `paint_shadow'
  5274.     public static void paint_shadow (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5275.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5276. gtk+-3.0.vapi:8279.2-8279.32: note: previous definition of `paint_shadow' was here
  5277.     public static void paint_shadow (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5278.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5279. gtk+-2.0.vapi:8145.2-8145.36: error: `Gtk' already contains a definition for `paint_shadow_gap'
  5280.     public static void paint_shadow_gap (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width);
  5281.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5282. gtk+-3.0.vapi:8281.2-8281.36: note: previous definition of `paint_shadow_gap' was here
  5283.     public static void paint_shadow_gap (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width);
  5284.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5285. gtk+-2.0.vapi:8147.2-8147.32: error: `Gtk' already contains a definition for `paint_slider'
  5286.     public static void paint_slider (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.Orientation orientation);
  5287.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5288. gtk+-3.0.vapi:8283.2-8283.32: note: previous definition of `paint_slider' was here
  5289.     public static void paint_slider (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.Orientation orientation);
  5290.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5291. gtk+-2.0.vapi:8149.2-8149.33: error: `Gtk' already contains a definition for `paint_spinner'
  5292.     public static void paint_spinner (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, uint step, int x, int y, int width, int height);
  5293.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5294. gtk+-3.0.vapi:8285.2-8285.33: note: previous definition of `paint_spinner' was here
  5295.     public static void paint_spinner (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.Widget widget, string detail, uint step, int x, int y, int width, int height);
  5296.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5297. gtk+-2.0.vapi:8151.2-8151.29: error: `Gtk' already contains a definition for `paint_tab'
  5298.     public static void paint_tab (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5299.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5300. gtk+-3.0.vapi:8287.2-8287.29: note: previous definition of `paint_tab' was here
  5301.     public static void paint_tab (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gtk.Widget? widget, string? detail, int x, int y, int width, int height);
  5302.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5303. gtk+-2.0.vapi:8153.2-8153.31: error: `Gtk' already contains a definition for `paint_vline'
  5304.     public static void paint_vline (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int y1_, int y2_, int x);
  5305.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5306. gtk+-3.0.vapi:8289.2-8289.31: note: previous definition of `paint_vline' was here
  5307.     public static void paint_vline (Gtk.Style style, Cairo.Context cr, Gtk.StateType state_type, Gtk.Widget? widget, string? detail, int y1_, int y2_, int x);
  5308.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5309. gtk+-2.0.vapi:8155.2-8155.30: error: `Gtk' already contains a definition for `parse_args'
  5310.     public static bool parse_args (int argc, string[] argv);
  5311.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5312. gtk+-3.0.vapi:8291.2-8291.30: note: previous definition of `parse_args' was here
  5313.     public static bool parse_args (int argc, string[] argv);
  5314.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5315. gtk+-2.0.vapi:8157.2-8157.43: error: `Gtk' already contains a definition for `print_error_quark'
  5316.     public static GLib.Quark print_error_quark ();
  5317.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5318. gtk+-3.0.vapi:8293.2-8293.43: note: previous definition of `print_error_quark' was here
  5319.     public static GLib.Quark print_error_quark ();
  5320.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5321. gtk+-2.0.vapi:8159.2-8159.64: error: `Gtk' already contains a definition for `print_run_page_setup_dialog'
  5322.     public static unowned Gtk.PageSetup print_run_page_setup_dialog (Gtk.Window parent, Gtk.PageSetup page_setup, Gtk.PrintSettings settings);
  5323.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5324. gtk+-3.0.vapi:8295.2-8295.64: note: previous definition of `print_run_page_setup_dialog' was here
  5325.     public static unowned Gtk.PageSetup print_run_page_setup_dialog (Gtk.Window parent, Gtk.PageSetup page_setup, Gtk.PrintSettings settings);
  5326.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5327. gtk+-2.0.vapi:8161.2-8161.53: error: `Gtk' already contains a definition for `print_run_page_setup_dialog_async'
  5328.     public static void print_run_page_setup_dialog_async (Gtk.Window parent, Gtk.PageSetup page_setup, Gtk.PrintSettings settings, Gtk.PageSetupDoneFunc done_cb, void* data);
  5329.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5330. gtk+-3.0.vapi:8297.2-8297.53: note: previous definition of `print_run_page_setup_dialog_async' was here
  5331.     public static void print_run_page_setup_dialog_async (Gtk.Window parent, Gtk.PageSetup page_setup, Gtk.PrintSettings settings, Gtk.PageSetupDoneFunc done_cb, void* data);
  5332.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5333. gtk+-2.0.vapi:8163.2-8163.35: error: `Gtk' already contains a definition for `propagate_event'
  5334.     public static void propagate_event (Gtk.Widget widget, Gdk.Event event);
  5335.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5336. gtk+-3.0.vapi:8299.2-8299.35: note: previous definition of `propagate_event' was here
  5337.     public static void propagate_event (Gtk.Widget widget, Gdk.Event event);
  5338.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5339. gtk+-2.0.vapi:8173.2-8173.39: error: `Gtk' already contains a definition for `rc_add_default_file'
  5340.     public static void rc_add_default_file (string filename);
  5341.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5342. gtk+-3.0.vapi:8301.2-8301.39: note: previous definition of `rc_add_default_file' was here
  5343.     public static void rc_add_default_file (string filename);
  5344.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5345. gtk+-2.0.vapi:8175.2-8175.52: error: `Gtk' already contains a definition for `rc_find_module_in_path'
  5346.     public static unowned string rc_find_module_in_path (string module_file);
  5347.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5348. gtk+-3.0.vapi:8303.2-8303.52: note: previous definition of `rc_find_module_in_path' was here
  5349.     public static unowned string rc_find_module_in_path (string module_file);
  5350.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5351. gtk+-2.0.vapi:8177.2-8177.52: error: `Gtk' already contains a definition for `rc_find_pixmap_in_path'
  5352.     public static unowned string rc_find_pixmap_in_path (Gtk.Settings settings, GLib.Scanner scanner, string pixmap_file);
  5353.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5354. gtk+-3.0.vapi:8305.2-8305.52: note: previous definition of `rc_find_pixmap_in_path' was here
  5355.     public static unowned string rc_find_pixmap_in_path (Gtk.Settings settings, GLib.Scanner scanner, string pixmap_file);
  5356.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5357. gtk+-2.0.vapi:8179.2-8179.50: error: `Gtk' already contains a definition for `rc_get_default_files'
  5358.     public static unowned string rc_get_default_files ();
  5359.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5360. gtk+-3.0.vapi:8307.2-8307.50: note: previous definition of `rc_get_default_files' was here
  5361.     public static unowned string rc_get_default_files ();
  5362.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5363. gtk+-2.0.vapi:8181.2-8181.51: error: `Gtk' already contains a definition for `rc_get_im_module_file'
  5364.     public static unowned string rc_get_im_module_file ();
  5365.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5366. gtk+-3.0.vapi:8309.2-8309.51: note: previous definition of `rc_get_im_module_file' was here
  5367.     public static unowned string rc_get_im_module_file ();
  5368.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5369. gtk+-2.0.vapi:8183.2-8183.51: error: `Gtk' already contains a definition for `rc_get_im_module_path'
  5370.     public static unowned string rc_get_im_module_path ();
  5371.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5372. gtk+-3.0.vapi:8311.2-8311.51: note: previous definition of `rc_get_im_module_path' was here
  5373.     public static unowned string rc_get_im_module_path ();
  5374.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5375. gtk+-2.0.vapi:8185.2-8185.47: error: `Gtk' already contains a definition for `rc_get_module_dir'
  5376.     public static unowned string rc_get_module_dir ();
  5377.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5378. gtk+-3.0.vapi:8313.2-8313.47: note: previous definition of `rc_get_module_dir' was here
  5379.     public static unowned string rc_get_module_dir ();
  5380.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5381. gtk+-2.0.vapi:8187.2-8187.45: error: `Gtk' already contains a definition for `rc_get_style'
  5382.     public static unowned Gtk.Style rc_get_style (Gtk.Widget widget);
  5383.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5384. gtk+-3.0.vapi:8315.2-8315.45: note: previous definition of `rc_get_style' was here
  5385.     public static unowned Gtk.Style rc_get_style (Gtk.Widget widget);
  5386.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5387. gtk+-2.0.vapi:8189.2-8189.55: error: `Gtk' already contains a definition for `rc_get_style_by_paths'
  5388.     public static unowned Gtk.Style? rc_get_style_by_paths (Gtk.Settings settings, string? widget_path, string? class_path, GLib.Type type);
  5389.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5390. gtk+-3.0.vapi:8317.2-8317.55: note: previous definition of `rc_get_style_by_paths' was here
  5391.     public static unowned Gtk.Style? rc_get_style_by_paths (Gtk.Settings settings, string? widget_path, string? class_path, GLib.Type type);
  5392.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5393. gtk+-2.0.vapi:8191.2-8191.46: error: `Gtk' already contains a definition for `rc_get_theme_dir'
  5394.     public static unowned string rc_get_theme_dir ();
  5395.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5396. gtk+-3.0.vapi:8319.2-8319.46: note: previous definition of `rc_get_theme_dir' was here
  5397.     public static unowned string rc_get_theme_dir ();
  5398.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5399. gtk+-2.0.vapi:8193.2-8193.28: error: `Gtk' already contains a definition for `rc_parse'
  5400.     public static void rc_parse (string filename);
  5401.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5402. gtk+-3.0.vapi:8321.2-8321.28: note: previous definition of `rc_parse' was here
  5403.     public static void rc_parse (string filename);
  5404.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5405. gtk+-2.0.vapi:8195.2-8195.34: error: `Gtk' already contains a definition for `rc_parse_color'
  5406.     public static uint rc_parse_color (GLib.Scanner scanner, Gdk.Color color);
  5407.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5408. gtk+-3.0.vapi:8323.2-8323.34: note: previous definition of `rc_parse_color' was here
  5409.     public static uint rc_parse_color (GLib.Scanner scanner, Gdk.Color color);
  5410.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5411. gtk+-2.0.vapi:8197.2-8197.39: error: `Gtk' already contains a definition for `rc_parse_color_full'
  5412.     public static uint rc_parse_color_full (GLib.Scanner scanner, Gtk.RcStyle style, Gdk.Color color);
  5413.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5414. gtk+-3.0.vapi:8325.2-8325.39: note: previous definition of `rc_parse_color_full' was here
  5415.     public static uint rc_parse_color_full (GLib.Scanner scanner, Gtk.RcStyle style, Gdk.Color color);
  5416.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5417. gtk+-2.0.vapi:8199.2-8199.37: error: `Gtk' already contains a definition for `rc_parse_priority'
  5418.     public static uint rc_parse_priority (GLib.Scanner scanner, Gtk.PathPriorityType priority);
  5419.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5420. gtk+-3.0.vapi:8327.2-8327.37: note: previous definition of `rc_parse_priority' was here
  5421.     public static uint rc_parse_priority (GLib.Scanner scanner, Gtk.PathPriorityType priority);
  5422.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5423. gtk+-2.0.vapi:8201.2-8201.34: error: `Gtk' already contains a definition for `rc_parse_state'
  5424.     public static uint rc_parse_state (GLib.Scanner scanner, Gtk.StateType state);
  5425.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5426. gtk+-3.0.vapi:8329.2-8329.34: note: previous definition of `rc_parse_state' was here
  5427.     public static uint rc_parse_state (GLib.Scanner scanner, Gtk.StateType state);
  5428.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5429. gtk+-2.0.vapi:8203.2-8203.35: error: `Gtk' already contains a definition for `rc_parse_string'
  5430.     public static void rc_parse_string (string rc_string);
  5431.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5432. gtk+-3.0.vapi:8331.2-8331.35: note: previous definition of `rc_parse_string' was here
  5433.     public static void rc_parse_string (string rc_string);
  5434.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5435. gtk+-2.0.vapi:8205.2-8205.34: error: `Gtk' already contains a definition for `rc_reparse_all'
  5436.     public static bool rc_reparse_all ();
  5437.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5438. gtk+-3.0.vapi:8333.2-8333.34: note: previous definition of `rc_reparse_all' was here
  5439.     public static bool rc_reparse_all ();
  5440.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5441. gtk+-2.0.vapi:8207.2-8207.47: error: `Gtk' already contains a definition for `rc_reparse_all_for_settings'
  5442.     public static bool rc_reparse_all_for_settings (Gtk.Settings settings, bool force_load);
  5443.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5444. gtk+-3.0.vapi:8335.2-8335.47: note: previous definition of `rc_reparse_all_for_settings' was here
  5445.     public static bool rc_reparse_all_for_settings (Gtk.Settings settings, bool force_load);
  5446.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5447. gtk+-2.0.vapi:8209.2-8209.35: error: `Gtk' already contains a definition for `rc_reset_styles'
  5448.     public static void rc_reset_styles (Gtk.Settings settings);
  5449.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5450. gtk+-3.0.vapi:8337.2-8337.35: note: previous definition of `rc_reset_styles' was here
  5451.     public static void rc_reset_styles (Gtk.Settings settings);
  5452.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5453. gtk+-2.0.vapi:8211.2-8211.50: error: `Gtk' already contains a definition for `rc_scanner_new'
  5454.     public static unowned GLib.Scanner rc_scanner_new ();
  5455.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5456. gtk+-3.0.vapi:8339.2-8339.50: note: previous definition of `rc_scanner_new' was here
  5457.     public static unowned GLib.Scanner rc_scanner_new ();
  5458.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5459. gtk+-2.0.vapi:8213.2-8213.40: error: `Gtk' already contains a definition for `rc_set_default_files'
  5460.     public static void rc_set_default_files (string filenames);
  5461.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5462. gtk+-3.0.vapi:8341.2-8341.40: note: previous definition of `rc_set_default_files' was here
  5463.     public static void rc_set_default_files (string filenames);
  5464.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5465. gtk+-2.0.vapi:8215.2-8215.30: error: `Gtk' already contains a definition for `rgb_to_hsv'
  5466.     public static void rgb_to_hsv (double r, double g, double b, double h, double s, double v);
  5467.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5468. gtk+-3.0.vapi:8393.2-8393.30: note: previous definition of `rgb_to_hsv' was here
  5469.     public static void rgb_to_hsv (double r, double g, double b, double h, double s, double v);
  5470.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5471. gtk+-2.0.vapi:8217.2-8217.40: error: `Gtk' already contains a definition for `selection_add_target'
  5472.     public static void selection_add_target (Gtk.Widget widget, Gdk.Atom selection, Gdk.Atom target, uint info);
  5473.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5474. gtk+-3.0.vapi:8395.2-8395.40: note: previous definition of `selection_add_target' was here
  5475.     public static void selection_add_target (Gtk.Widget widget, Gdk.Atom selection, Gdk.Atom target, uint info);
  5476.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5477. gtk+-2.0.vapi:8219.2-8219.41: error: `Gtk' already contains a definition for `selection_add_targets'
  5478.     public static void selection_add_targets (Gtk.Widget widget, Gdk.Atom selection, Gtk.TargetEntry[] targets, uint ntargets);
  5479.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5480. gtk+-3.0.vapi:8397.2-8397.41: note: previous definition of `selection_add_targets' was here
  5481.     public static void selection_add_targets (Gtk.Widget widget, Gdk.Atom selection, Gtk.TargetEntry[] targets, uint ntargets);
  5482.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5483. gtk+-2.0.vapi:8223.2-8223.43: error: `Gtk' already contains a definition for `selection_clear_targets'
  5484.     public static void selection_clear_targets (Gtk.Widget widget, Gdk.Atom selection);
  5485.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5486. gtk+-3.0.vapi:8399.2-8399.43: note: previous definition of `selection_clear_targets' was here
  5487.     public static void selection_clear_targets (Gtk.Widget widget, Gdk.Atom selection);
  5488.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5489. gtk+-2.0.vapi:8225.2-8225.37: error: `Gtk' already contains a definition for `selection_convert'
  5490.     public static bool selection_convert (Gtk.Widget widget, Gdk.Atom selection, Gdk.Atom target, uint32 time_);
  5491.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5492. gtk+-3.0.vapi:8401.2-8401.37: note: previous definition of `selection_convert' was here
  5493.     public static bool selection_convert (Gtk.Widget widget, Gdk.Atom selection, Gdk.Atom target, uint32 time_);
  5494.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5495. gtk+-2.0.vapi:8227.2-8227.39: error: `Gtk' already contains a definition for `selection_owner_set'
  5496.     public static bool selection_owner_set (Gtk.Widget widget, Gdk.Atom selection, uint32 time_);
  5497.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5498. gtk+-3.0.vapi:8403.2-8403.39: note: previous definition of `selection_owner_set' was here
  5499.     public static bool selection_owner_set (Gtk.Widget widget, Gdk.Atom selection, uint32 time_);
  5500.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5501. gtk+-2.0.vapi:8229.2-8229.51: error: `Gtk' already contains a definition for `selection_owner_set_for_display'
  5502.     public static bool selection_owner_set_for_display (Gdk.Display display, Gtk.Widget widget, Gdk.Atom selection, uint32 time_);
  5503.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5504. gtk+-3.0.vapi:8405.2-8405.51: note: previous definition of `selection_owner_set_for_display' was here
  5505.     public static bool selection_owner_set_for_display (Gdk.Display display, Gtk.Widget widget, Gdk.Atom selection, uint32 time_);
  5506.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5507. gtk+-2.0.vapi:8231.2-8231.40: error: `Gtk' already contains a definition for `selection_remove_all'
  5508.     public static void selection_remove_all (Gtk.Widget widget);
  5509.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5510. gtk+-3.0.vapi:8407.2-8407.40: note: previous definition of `selection_remove_all' was here
  5511.     public static void selection_remove_all (Gtk.Widget widget);
  5512.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5513. gtk+-2.0.vapi:8235.2-8235.37: error: `Gtk' already contains a definition for `show_about_dialog'
  5514.     public static void show_about_dialog (Gtk.Window? parent, ...);
  5515.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5516. gtk+-3.0.vapi:8411.2-8411.37: note: previous definition of `show_about_dialog' was here
  5517.     public static void show_about_dialog (Gtk.Window? parent, ...);
  5518.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5519. gtk+-2.0.vapi:8237.2-8237.28: error: `Gtk' already contains a definition for `show_uri'
  5520.     public static bool show_uri (Gdk.Screen? screen, string uri, uint32 timestamp) throws GLib.Error;
  5521.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5522. gtk+-3.0.vapi:8413.2-8413.28: note: previous definition of `show_uri' was here
  5523.     public static bool show_uri (Gdk.Screen? screen, string uri, uint32 timestamp) throws GLib.Error;
  5524.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5525. gtk+-2.0.vapi:8240.2-8240.29: error: `Gtk' already contains a definition for `stock_add'
  5526.     public static void stock_add (Gtk.StockItem[] items);
  5527.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5528. gtk+-3.0.vapi:8416.2-8416.29: note: previous definition of `stock_add' was here
  5529.     public static void stock_add (Gtk.StockItem[] items);
  5530.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5531. gtk+-2.0.vapi:8243.2-8243.36: error: `Gtk' already contains a definition for `stock_add_static'
  5532.     public static void stock_add_static (Gtk.StockItem[] items);
  5533.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5534. gtk+-3.0.vapi:8419.2-8419.36: note: previous definition of `stock_add_static' was here
  5535.     public static void stock_add_static (Gtk.StockItem[] items);
  5536.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5537. gtk+-2.0.vapi:8246.2-8246.48: error: `Gtk' already contains a definition for `stock_list_ids'
  5538.     public static GLib.SList<string> stock_list_ids ();
  5539.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5540. gtk+-3.0.vapi:8422.2-8422.48: note: previous definition of `stock_list_ids' was here
  5541.     public static GLib.SList<string> stock_list_ids ();
  5542.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5543. gtk+-2.0.vapi:8248.2-8248.44: error: `Gtk' already contains a definition for `stock_set_translate_func'
  5544.     public static void stock_set_translate_func (string domain, owned Gtk.TranslateFunc func);
  5545.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5546. gtk+-3.0.vapi:8424.2-8424.44: note: previous definition of `stock_set_translate_func' was here
  5547.     public static void stock_set_translate_func (string domain, owned Gtk.TranslateFunc func);
  5548.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5549. gtk+-2.0.vapi:8250.2-8250.37: error: `Gtk' already contains a definition for `target_table_free'
  5550.     public static void target_table_free (Gtk.TargetEntry[] targets);
  5551.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5552. gtk+-3.0.vapi:8426.2-8426.37: note: previous definition of `target_table_free' was here
  5553.     public static void target_table_free (Gtk.TargetEntry[] targets);
  5554.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5555. gtk+-2.0.vapi:8252.2-8252.59: error: `Gtk' already contains a definition for `target_table_new_from_list'
  5556.     public static Gtk.TargetEntry[] target_table_new_from_list (Gtk.TargetList list);
  5557.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5558. gtk+-3.0.vapi:8428.2-8428.59: note: previous definition of `target_table_new_from_list' was here
  5559.     public static Gtk.TargetEntry[] target_table_new_from_list (Gtk.TargetList list);
  5560.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5561. gtk+-2.0.vapi:8254.2-8254.41: error: `Gtk' already contains a definition for `targets_include_image'
  5562.     public static bool targets_include_image (Gdk.Atom[] targets, bool writable);
  5563.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5564. gtk+-3.0.vapi:8430.2-8430.41: note: previous definition of `targets_include_image' was here
  5565.     public static bool targets_include_image (Gdk.Atom[] targets, bool writable);
  5566.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5567. gtk+-2.0.vapi:8256.2-8256.45: error: `Gtk' already contains a definition for `targets_include_rich_text'
  5568.     public static bool targets_include_rich_text (Gdk.Atom[] targets, Gtk.TextBuffer buffer);
  5569.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5570. gtk+-3.0.vapi:8432.2-8432.45: note: previous definition of `targets_include_rich_text' was here
  5571.     public static bool targets_include_rich_text (Gdk.Atom[] targets, Gtk.TextBuffer buffer);
  5572.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5573. gtk+-2.0.vapi:8258.2-8258.40: error: `Gtk' already contains a definition for `targets_include_text'
  5574.     public static bool targets_include_text (Gdk.Atom[] targets);
  5575.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5576. gtk+-3.0.vapi:8434.2-8434.40: note: previous definition of `targets_include_text' was here
  5577.     public static bool targets_include_text (Gdk.Atom[] targets);
  5578.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5579. gtk+-2.0.vapi:8260.2-8260.39: error: `Gtk' already contains a definition for `targets_include_uri'
  5580.     public static bool targets_include_uri (Gdk.Atom[] targets);
  5581.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5582. gtk+-3.0.vapi:8436.2-8436.39: note: previous definition of `targets_include_uri' was here
  5583.     public static bool targets_include_uri (Gdk.Atom[] targets);
  5584.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5585. gtk+-2.0.vapi:8262.2-8262.59: error: `Gtk' already contains a definition for `test_create_simple_window'
  5586.     public static unowned Gtk.Widget test_create_simple_window (string window_title, string dialog_text);
  5587.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5588. gtk+-3.0.vapi:8438.2-8438.59: note: previous definition of `test_create_simple_window' was here
  5589.     public static unowned Gtk.Widget test_create_simple_window (string window_title, string dialog_text);
  5590.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5591. gtk+-2.0.vapi:8264.2-8264.52: error: `Gtk' already contains a definition for `test_create_widget'
  5592.     public static unowned Gtk.Widget test_create_widget (GLib.Type widget_type, ...);
  5593.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5594. gtk+-3.0.vapi:8440.2-8440.52: note: previous definition of `test_create_widget' was here
  5595.     public static unowned Gtk.Widget test_create_widget (GLib.Type widget_type, ...);
  5596.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5597. gtk+-2.0.vapi:8266.2-8266.60: error: `Gtk' already contains a definition for `test_display_button_window'
  5598.     public static unowned Gtk.Widget test_display_button_window (string window_title, string dialog_text);
  5599.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5600. gtk+-3.0.vapi:8442.2-8442.60: note: previous definition of `test_display_button_window' was here
  5601.     public static unowned Gtk.Widget test_display_button_window (string window_title, string dialog_text);
  5602.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5603. gtk+-2.0.vapi:8268.2-8268.49: error: `Gtk' already contains a definition for `test_find_label'
  5604.     public static unowned Gtk.Widget test_find_label (Gtk.Widget widget, string label_pattern);
  5605.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5606. gtk+-3.0.vapi:8444.2-8444.49: note: previous definition of `test_find_label' was here
  5607.     public static unowned Gtk.Widget test_find_label (Gtk.Widget widget, string label_pattern);
  5608.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5609. gtk+-2.0.vapi:8270.2-8270.51: error: `Gtk' already contains a definition for `test_find_sibling'
  5610.     public static unowned Gtk.Widget test_find_sibling (Gtk.Widget base_widget, GLib.Type widget_type);
  5611.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5612. gtk+-3.0.vapi:8446.2-8446.51: note: previous definition of `test_find_sibling' was here
  5613.     public static unowned Gtk.Widget test_find_sibling (Gtk.Widget base_widget, GLib.Type widget_type);
  5614.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5615. gtk+-2.0.vapi:8272.2-8272.50: error: `Gtk' already contains a definition for `test_find_widget'
  5616.     public static unowned Gtk.Widget test_find_widget (Gtk.Widget widget, string label_pattern, GLib.Type widget_type);
  5617.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5618. gtk+-3.0.vapi:8448.2-8448.50: note: previous definition of `test_find_widget' was here
  5619.     public static unowned Gtk.Widget test_find_widget (Gtk.Widget widget, string label_pattern, GLib.Type widget_type);
  5620.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5621. gtk+-2.0.vapi:8274.2-8274.29: error: `Gtk' already contains a definition for `test_init'
  5622.     public static void test_init (int argcp, out unowned string argvp);
  5623.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5624. gtk+-3.0.vapi:8450.2-8450.29: note: previous definition of `test_init' was here
  5625.     public static void test_init (int argcp, out unowned string argvp);
  5626.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5627. gtk+-2.0.vapi:8276.2-8276.54: error: `Gtk' already contains a definition for `test_list_all_types'
  5628.     public static unowned GLib.Type[] test_list_all_types (uint n_types);
  5629.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5630. gtk+-3.0.vapi:8452.2-8452.54: note: previous definition of `test_list_all_types' was here
  5631.     public static unowned GLib.Type[] test_list_all_types (uint n_types);
  5632.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5633. gtk+-2.0.vapi:8278.2-8278.43: error: `Gtk' already contains a definition for `test_register_all_types'
  5634.     public static void test_register_all_types ();
  5635.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5636. gtk+-3.0.vapi:8454.2-8454.43: note: previous definition of `test_register_all_types' was here
  5637.     public static void test_register_all_types ();
  5638.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5639. gtk+-2.0.vapi:8280.2-8280.43: error: `Gtk' already contains a definition for `test_slider_get_value'
  5640.     public static double test_slider_get_value (Gtk.Widget widget);
  5641.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5642. gtk+-3.0.vapi:8456.2-8456.43: note: previous definition of `test_slider_get_value' was here
  5643.     public static double test_slider_get_value (Gtk.Widget widget);
  5644.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5645. gtk+-2.0.vapi:8282.2-8282.40: error: `Gtk' already contains a definition for `test_slider_set_perc'
  5646.     public static void test_slider_set_perc (Gtk.Widget widget, double percentage);
  5647.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5648. gtk+-3.0.vapi:8458.2-8458.40: note: previous definition of `test_slider_set_perc' was here
  5649.     public static void test_slider_set_perc (Gtk.Widget widget, double percentage);
  5650.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5651. gtk+-2.0.vapi:8284.2-8284.42: error: `Gtk' already contains a definition for `test_spin_button_click'
  5652.     public static bool test_spin_button_click (Gtk.SpinButton spinner, uint button, bool upwards);
  5653.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5654. gtk+-3.0.vapi:8460.2-8460.42: note: previous definition of `test_spin_button_click' was here
  5655.     public static bool test_spin_button_click (Gtk.SpinButton spinner, uint button, bool upwards);
  5656.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5657. gtk+-2.0.vapi:8286.2-8286.43: error: `Gtk' already contains a definition for `test_text_get'
  5658.     public static unowned string test_text_get (Gtk.Widget widget);
  5659.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5660. gtk+-3.0.vapi:8462.2-8462.43: note: previous definition of `test_text_get' was here
  5661.     public static unowned string test_text_get (Gtk.Widget widget);
  5662.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5663. gtk+-2.0.vapi:8288.2-8288.33: error: `Gtk' already contains a definition for `test_text_set'
  5664.     public static void test_text_set (Gtk.Widget widget, string str);
  5665.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5666. gtk+-3.0.vapi:8464.2-8464.33: note: previous definition of `test_text_set' was here
  5667.     public static void test_text_set (Gtk.Widget widget, string str);
  5668.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5669. gtk+-2.0.vapi:8290.2-8290.37: error: `Gtk' already contains a definition for `test_widget_click'
  5670.     public static bool test_widget_click (Gtk.Widget widget, uint button, Gdk.ModifierType modifiers);
  5671.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5672. gtk+-3.0.vapi:8466.2-8466.37: note: previous definition of `test_widget_click' was here
  5673.     public static bool test_widget_click (Gtk.Widget widget, uint button, Gdk.ModifierType modifiers);
  5674.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5675. gtk+-2.0.vapi:8292.2-8292.40: error: `Gtk' already contains a definition for `test_widget_send_key'
  5676.     public static bool test_widget_send_key (Gtk.Widget widget, uint keyval, Gdk.ModifierType modifiers);
  5677.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5678. gtk+-3.0.vapi:8468.2-8468.40: note: previous definition of `test_widget_send_key' was here
  5679.     public static bool test_widget_send_key (Gtk.Widget widget, uint keyval, Gdk.ModifierType modifiers);
  5680.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5681. gtk+-2.0.vapi:8294.2-8294.42: error: `Gtk' already contains a definition for `tree_get_row_drag_data'
  5682.     public static bool tree_get_row_drag_data (Gtk.SelectionData selection_data, out unowned Gtk.TreeModel tree_model, out unowned Gtk.TreePath path);
  5683.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5684. gtk+-3.0.vapi:8470.2-8470.42: note: previous definition of `tree_get_row_drag_data' was here
  5685.     public static bool tree_get_row_drag_data (Gtk.SelectionData selection_data, out unowned Gtk.TreeModel tree_model, out unowned Gtk.TreePath path);
  5686.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5687. gtk+-2.0.vapi:8296.2-8296.42: error: `Gtk' already contains a definition for `tree_set_row_drag_data'
  5688.     public static bool tree_set_row_drag_data (Gtk.SelectionData selection_data, Gtk.TreeModel tree_model, Gtk.TreePath path);
  5689.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5690. gtk+-3.0.vapi:8472.2-8472.42: note: previous definition of `tree_set_row_drag_data' was here
  5691.     public static bool tree_set_row_drag_data (Gtk.SelectionData selection_data, Gtk.TreeModel tree_model, Gtk.TreePath path);
  5692.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5693. Compilation failed: 945 error(s), 0 warning(s)
  5694. make[2]: *** [src/Write.c] Error 1
  5695. make[1]: *** [CMakeFiles/write.dir/all] Error 2
  5696. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement