comparison nobuild/gtkd-patches.diff @ 123:0d427170a805

Move to 64-bit
author David Bryant <bagnose@gmail.com>
date Wed, 04 May 2011 22:19:44 +0930
parents 403c34305a39
children
comparison
equal deleted inserted replaced
122:403c34305a39 123:0d427170a805
1 Index: GNUmakefile 1 Index: GNUmakefile
2 =================================================================== 2 ===================================================================
3 --- GNUmakefile (revision 843) 3 --- GNUmakefile (revision 844)
4 +++ GNUmakefile (working copy) 4 +++ GNUmakefile (working copy)
5 @@ -1,6 +1,7 @@ 5 @@ -1,6 +1,8 @@
6 #makeAll.sh 6 #makeAll.sh
7 SHELL=/bin/sh 7 SHELL=/bin/sh
8 -prefix=/usr/local 8 -prefix=/usr/local
9 +#prefix=/usr/local 9 +#prefix=/usr/local
10 +prefix=/home/daveb/source/d/dmd 10 +prefix=/home/daveb/source/d/dmd
11 +LIBDIR=lib64
11 12
12 OS=$(shell uname || uname -s) 13 OS=$(shell uname || uname -s)
13 ARCH=$(shell arch || uname -m) 14 ARCH=$(shell arch || uname -m)
14 @@ -19,7 +20,7 @@ 15 @@ -19,7 +21,8 @@
15 endif 16 endif
16 17
17 ifeq ("$(DC)","dmd") 18 ifeq ("$(DC)","dmd")
18 - DCFLAGS=-O 19 - DCFLAGS=-O
19 + DCFLAGS=-O -w -wi -m32 20 +#DCFLAGS=-O
21 + DCFLAGS=-O -w -wi -m64
20 LINKERFLAG=-L 22 LINKERFLAG=-L
21 output=-of$@ 23 output=-of$@
22 else ifeq ("$(DC)","ldc") 24 else ifeq ("$(DC)","ldc")
25 @@ -169,34 +172,34 @@
26 (cd src; echo $(SOURCES_GTKD) | sed -e s,src/,,g | xargs tar c) | (cd $(DESTDIR)$(prefix)/include/d; tar xv)
27 (cd srcgl; echo $(SOURCES_GTKDGL) | sed -e s,srcgl/,,g | xargs tar c) | (cd $(DESTDIR)$(prefix)/include/d; tar xv)
28 (cd srcsv; echo $(SOURCES_GTKDSV) | sed -e s,srcsv/,,g | xargs tar c) | (cd $(DESTDIR)$(prefix)/include/d; tar xv)
29 - install -d $(DESTDIR)$(prefix)/lib
30 - install -m 644 $(LIBNAME_GTKD) $(DESTDIR)$(prefix)/lib
31 - install -m 644 $(LIBNAME_GTKDGL) $(DESTDIR)$(prefix)/lib
32 - install -m 644 $(LIBNAME_GTKDSV) $(DESTDIR)$(prefix)/lib
33 + install -d $(DESTDIR)$(prefix)/$(LIBDIR)
34 + install -m 644 $(LIBNAME_GTKD) $(DESTDIR)$(prefix)/$(LIBDIR)
35 + install -m 644 $(LIBNAME_GTKDGL) $(DESTDIR)$(prefix)/$(LIBDIR)
36 + install -m 644 $(LIBNAME_GTKDSV) $(DESTDIR)$(prefix)/$(LIBDIR)
37
38 install-gda: install
39 (cd srcgda; echo $(SOURCES_GTKDGDA) | sed -e s,srcgda/,,g | xargs tar c) | (cd $(DESTDIR)$(prefix)/include/d; tar xv)
40 - install -m 644 $(LIBNAME_GTKDGDA) $(DESTDIR)$(prefix)/lib
41 + install -m 644 $(LIBNAME_GTKDGDA) $(DESTDIR)$(prefix)/$(LIBDIR)
42
43 install-gstreamer: install
44 (cd srcgstreamer; echo $(SOURCES_GSTREAMERD) | sed -e s,srcgstreamer/,,g | xargs tar c) | (cd $(DESTDIR)$(prefix)/include/d; tar xv)
45 - install -m 644 $(LIBNAME_GSTREAMERD) $(DESTDIR)$(prefix)/lib
46 + install -m 644 $(LIBNAME_GSTREAMERD) $(DESTDIR)$(prefix)/$(LIBDIR)
47
48 uninstall:
49 $(foreach dir,$(shell ls src) , rm -rf $(DESTDIR)$(prefix)/include/d/$(dir))
50 $(foreach dir,$(shell ls srcgl), rm -rf $(DESTDIR)$(prefix)/include/d/$(dir))
51 $(foreach dir,$(shell ls srcsv), rm -rf $(DESTDIR)$(prefix)/include/d/$(dir))
52 - rm -f $(DESTDIR)$(prefix)/lib/$(LIBNAME_GTKD)
53 - rm -f $(DESTDIR)$(prefix)/lib/$(LIBNAME_GTKDGL)
54 - rm -f $(DESTDIR)$(prefix)/lib/$(LIBNAME_GTKDSV)
55 + rm -f $(DESTDIR)$(prefix)/$(LIBDIR)/$(LIBNAME_GTKD)
56 + rm -f $(DESTDIR)$(prefix)/$(LIBDIR)/$(LIBNAME_GTKDGL)
57 + rm -f $(DESTDIR)$(prefix)/$(LIBDIR)/$(LIBNAME_GTKDSV)
58
59 uninstall-gda:
60 $(foreach dir,$(shell ls srcgda), rm -rf $(DESTDIR)$(prefix)/include/d/$(dir))
61 - rm -f $(DESTDIR)$(prefix)/lib/$(LIBNAME_GTKDGDA)
62 + rm -f $(DESTDIR)$(prefix)/$(LIBDIR)/$(LIBNAME_GTKDGDA)
63
64 uninstall-gstreamer:
65 $(foreach dir,$(shell ls srcgstreamer), rm -rf $(DESTDIR)$(prefix)/include/d/$(dir))
66 - rm -f $(DESTDIR)$(prefix)/lib/$(LIBNAME_GSTREAMERD)
67 + rm -f $(DESTDIR)$(prefix)/$(LIBDIR)/$(LIBNAME_GSTREAMERD)
68
69 clean:
70 -rm -f $(LIBNAME_GTKD) $(OBJECTS_GTKD)
23 Index: src/atk/ObjectFactory.d 71 Index: src/atk/ObjectFactory.d
24 =================================================================== 72 ===================================================================
25 --- src/atk/ObjectFactory.d (revision 843) 73 --- src/atk/ObjectFactory.d (revision 844)
26 +++ src/atk/ObjectFactory.d (working copy) 74 +++ src/atk/ObjectFactory.d (working copy)
27 @@ -115,7 +115,7 @@ 75 @@ -115,7 +115,7 @@
28 this.atkObjectFactory = atkObjectFactory; 76 this.atkObjectFactory = atkObjectFactory;
29 } 77 }
30 78
33 { 81 {
34 super.setStruct(obj); 82 super.setStruct(obj);
35 atkObjectFactory = cast(AtkObjectFactory*)obj; 83 atkObjectFactory = cast(AtkObjectFactory*)obj;
36 Index: src/atk/NoOpObject.d 84 Index: src/atk/NoOpObject.d
37 =================================================================== 85 ===================================================================
38 --- src/atk/NoOpObject.d (revision 843) 86 --- src/atk/NoOpObject.d (revision 844)
39 +++ src/atk/NoOpObject.d (working copy) 87 +++ src/atk/NoOpObject.d (working copy)
40 @@ -113,7 +113,7 @@ 88 @@ -113,7 +113,7 @@
41 this.atkNoOpObject = atkNoOpObject; 89 this.atkNoOpObject = atkNoOpObject;
42 } 90 }
43 91
46 { 94 {
47 super.setStruct(obj); 95 super.setStruct(obj);
48 atkNoOpObject = cast(AtkNoOpObject*)obj; 96 atkNoOpObject = cast(AtkNoOpObject*)obj;
49 Index: src/atk/Hyperlink.d 97 Index: src/atk/Hyperlink.d
50 =================================================================== 98 ===================================================================
51 --- src/atk/Hyperlink.d (revision 843) 99 --- src/atk/Hyperlink.d (revision 844)
52 +++ src/atk/Hyperlink.d (working copy) 100 +++ src/atk/Hyperlink.d (working copy)
53 @@ -116,7 +116,7 @@ 101 @@ -116,7 +116,7 @@
54 this.atkHyperlink = atkHyperlink; 102 this.atkHyperlink = atkHyperlink;
55 } 103 }
56 104
59 { 107 {
60 super.setStruct(obj); 108 super.setStruct(obj);
61 atkHyperlink = cast(AtkHyperlink*)obj; 109 atkHyperlink = cast(AtkHyperlink*)obj;
62 Index: src/atk/ObjectAtk.d 110 Index: src/atk/ObjectAtk.d
63 =================================================================== 111 ===================================================================
64 --- src/atk/ObjectAtk.d (revision 843) 112 --- src/atk/ObjectAtk.d (revision 844)
65 +++ src/atk/ObjectAtk.d (working copy) 113 +++ src/atk/ObjectAtk.d (working copy)
66 @@ -133,7 +133,7 @@ 114 @@ -133,7 +133,7 @@
67 this.atkObject = atkObject; 115 this.atkObject = atkObject;
68 } 116 }
69 117
72 { 120 {
73 super.setStruct(obj); 121 super.setStruct(obj);
74 atkObject = cast(AtkObject*)obj; 122 atkObject = cast(AtkObject*)obj;
75 Index: src/atk/Registry.d 123 Index: src/atk/Registry.d
76 =================================================================== 124 ===================================================================
77 --- src/atk/Registry.d (revision 843) 125 --- src/atk/Registry.d (revision 844)
78 +++ src/atk/Registry.d (working copy) 126 +++ src/atk/Registry.d (working copy)
79 @@ -115,7 +115,7 @@ 127 @@ -115,7 +115,7 @@
80 this.atkRegistry = atkRegistry; 128 this.atkRegistry = atkRegistry;
81 } 129 }
82 130
85 { 133 {
86 super.setStruct(obj); 134 super.setStruct(obj);
87 atkRegistry = cast(AtkRegistry*)obj; 135 atkRegistry = cast(AtkRegistry*)obj;
88 Index: src/atk/Relation.d 136 Index: src/atk/Relation.d
89 =================================================================== 137 ===================================================================
90 --- src/atk/Relation.d (revision 843) 138 --- src/atk/Relation.d (revision 844)
91 +++ src/atk/Relation.d (working copy) 139 +++ src/atk/Relation.d (working copy)
92 @@ -115,7 +115,7 @@ 140 @@ -115,7 +115,7 @@
93 this.atkRelation = atkRelation; 141 this.atkRelation = atkRelation;
94 } 142 }
95 143
98 { 146 {
99 super.setStruct(obj); 147 super.setStruct(obj);
100 atkRelation = cast(AtkRelation*)obj; 148 atkRelation = cast(AtkRelation*)obj;
101 Index: src/atk/RelationSet.d 149 Index: src/atk/RelationSet.d
102 =================================================================== 150 ===================================================================
103 --- src/atk/RelationSet.d (revision 843) 151 --- src/atk/RelationSet.d (revision 844)
104 +++ src/atk/RelationSet.d (working copy) 152 +++ src/atk/RelationSet.d (working copy)
105 @@ -119,7 +119,7 @@ 153 @@ -119,7 +119,7 @@
106 this.atkRelationSet = atkRelationSet; 154 this.atkRelationSet = atkRelationSet;
107 } 155 }
108 156
111 { 159 {
112 super.setStruct(obj); 160 super.setStruct(obj);
113 atkRelationSet = cast(AtkRelationSet*)obj; 161 atkRelationSet = cast(AtkRelationSet*)obj;
114 Index: src/atk/NoOpObjectFactory.d 162 Index: src/atk/NoOpObjectFactory.d
115 =================================================================== 163 ===================================================================
116 --- src/atk/NoOpObjectFactory.d (revision 843) 164 --- src/atk/NoOpObjectFactory.d (revision 844)
117 +++ src/atk/NoOpObjectFactory.d (working copy) 165 +++ src/atk/NoOpObjectFactory.d (working copy)
118 @@ -107,7 +107,7 @@ 166 @@ -107,7 +107,7 @@
119 this.atkNoOpObjectFactory = atkNoOpObjectFactory; 167 this.atkNoOpObjectFactory = atkNoOpObjectFactory;
120 } 168 }
121 169
124 { 172 {
125 super.setStruct(obj); 173 super.setStruct(obj);
126 atkNoOpObjectFactory = cast(AtkNoOpObjectFactory*)obj; 174 atkNoOpObjectFactory = cast(AtkNoOpObjectFactory*)obj;
127 Index: src/atk/GObjectAccessible.d 175 Index: src/atk/GObjectAccessible.d
128 =================================================================== 176 ===================================================================
129 --- src/atk/GObjectAccessible.d (revision 843) 177 --- src/atk/GObjectAccessible.d (revision 844)
130 +++ src/atk/GObjectAccessible.d (working copy) 178 +++ src/atk/GObjectAccessible.d (working copy)
131 @@ -114,7 +114,7 @@ 179 @@ -114,7 +114,7 @@
132 this.atkGObjectAccessible = atkGObjectAccessible; 180 this.atkGObjectAccessible = atkGObjectAccessible;
133 } 181 }
134 182
137 { 185 {
138 super.setStruct(obj); 186 super.setStruct(obj);
139 atkGObjectAccessible = cast(AtkGObjectAccessible*)obj; 187 atkGObjectAccessible = cast(AtkGObjectAccessible*)obj;
140 Index: src/atk/StateSet.d 188 Index: src/atk/StateSet.d
141 =================================================================== 189 ===================================================================
142 --- src/atk/StateSet.d (revision 843) 190 --- src/atk/StateSet.d (revision 844)
143 +++ src/atk/StateSet.d (working copy) 191 +++ src/atk/StateSet.d (working copy)
144 @@ -109,7 +109,7 @@ 192 @@ -109,7 +109,7 @@
145 this.atkStateSet = atkStateSet; 193 this.atkStateSet = atkStateSet;
146 } 194 }
147 195
150 { 198 {
151 super.setStruct(obj); 199 super.setStruct(obj);
152 atkStateSet = cast(AtkStateSet*)obj; 200 atkStateSet = cast(AtkStateSet*)obj;
153 Index: src/gdkpixbuf/PixbufAnimation.d 201 Index: src/gdkpixbuf/PixbufAnimation.d
154 =================================================================== 202 ===================================================================
155 --- src/gdkpixbuf/PixbufAnimation.d (revision 843) 203 --- src/gdkpixbuf/PixbufAnimation.d (revision 844)
156 +++ src/gdkpixbuf/PixbufAnimation.d (working copy) 204 +++ src/gdkpixbuf/PixbufAnimation.d (working copy)
157 @@ -131,7 +131,7 @@ 205 @@ -131,7 +131,7 @@
158 this.gdkPixbufAnimation = gdkPixbufAnimation; 206 this.gdkPixbufAnimation = gdkPixbufAnimation;
159 } 207 }
160 208
163 { 211 {
164 super.setStruct(obj); 212 super.setStruct(obj);
165 gdkPixbufAnimation = cast(GdkPixbufAnimation*)obj; 213 gdkPixbufAnimation = cast(GdkPixbufAnimation*)obj;
166 Index: src/gdkpixbuf/PixbufAnimationIter.d 214 Index: src/gdkpixbuf/PixbufAnimationIter.d
167 =================================================================== 215 ===================================================================
168 --- src/gdkpixbuf/PixbufAnimationIter.d (revision 843) 216 --- src/gdkpixbuf/PixbufAnimationIter.d (revision 844)
169 +++ src/gdkpixbuf/PixbufAnimationIter.d (working copy) 217 +++ src/gdkpixbuf/PixbufAnimationIter.d (working copy)
170 @@ -117,7 +117,7 @@ 218 @@ -117,7 +117,7 @@
171 this.gdkPixbufAnimationIter = gdkPixbufAnimationIter; 219 this.gdkPixbufAnimationIter = gdkPixbufAnimationIter;
172 } 220 }
173 221
176 { 224 {
177 super.setStruct(obj); 225 super.setStruct(obj);
178 gdkPixbufAnimationIter = cast(GdkPixbufAnimationIter*)obj; 226 gdkPixbufAnimationIter = cast(GdkPixbufAnimationIter*)obj;
179 Index: src/gdkpixbuf/PixbufLoader.d 227 Index: src/gdkpixbuf/PixbufLoader.d
180 =================================================================== 228 ===================================================================
181 --- src/gdkpixbuf/PixbufLoader.d (revision 843) 229 --- src/gdkpixbuf/PixbufLoader.d (revision 844)
182 +++ src/gdkpixbuf/PixbufLoader.d (working copy) 230 +++ src/gdkpixbuf/PixbufLoader.d (working copy)
183 @@ -161,7 +161,7 @@ 231 @@ -161,7 +161,7 @@
184 this.gdkPixbufLoader = gdkPixbufLoader; 232 this.gdkPixbufLoader = gdkPixbufLoader;
185 } 233 }
186 234
189 { 237 {
190 super.setStruct(obj); 238 super.setStruct(obj);
191 gdkPixbufLoader = cast(GdkPixbufLoader*)obj; 239 gdkPixbufLoader = cast(GdkPixbufLoader*)obj;
192 Index: src/gdkpixbuf/PixbufSimpleAnimation.d 240 Index: src/gdkpixbuf/PixbufSimpleAnimation.d
193 =================================================================== 241 ===================================================================
194 --- src/gdkpixbuf/PixbufSimpleAnimation.d (revision 843) 242 --- src/gdkpixbuf/PixbufSimpleAnimation.d (revision 844)
195 +++ src/gdkpixbuf/PixbufSimpleAnimation.d (working copy) 243 +++ src/gdkpixbuf/PixbufSimpleAnimation.d (working copy)
196 @@ -114,7 +114,7 @@ 244 @@ -114,7 +114,7 @@
197 this.gdkPixbufSimpleAnim = gdkPixbufSimpleAnim; 245 this.gdkPixbufSimpleAnim = gdkPixbufSimpleAnim;
198 } 246 }
199 247
202 { 250 {
203 super.setStruct(obj); 251 super.setStruct(obj);
204 gdkPixbufSimpleAnim = cast(GdkPixbufSimpleAnim*)obj; 252 gdkPixbufSimpleAnim = cast(GdkPixbufSimpleAnim*)obj;
205 Index: src/pango/PgRenderer.d 253 Index: src/pango/PgRenderer.d
206 =================================================================== 254 ===================================================================
207 --- src/pango/PgRenderer.d (revision 843) 255 --- src/pango/PgRenderer.d (revision 844)
208 +++ src/pango/PgRenderer.d (working copy) 256 +++ src/pango/PgRenderer.d (working copy)
209 @@ -132,7 +132,7 @@ 257 @@ -132,7 +132,7 @@
210 this.pangoRenderer = pangoRenderer; 258 this.pangoRenderer = pangoRenderer;
211 } 259 }
212 260
215 { 263 {
216 super.setStruct(obj); 264 super.setStruct(obj);
217 pangoRenderer = cast(PangoRenderer*)obj; 265 pangoRenderer = cast(PangoRenderer*)obj;
218 Index: src/pango/PgLayout.d 266 Index: src/pango/PgLayout.d
219 =================================================================== 267 ===================================================================
220 --- src/pango/PgLayout.d (revision 843) 268 --- src/pango/PgLayout.d (revision 844)
221 +++ src/pango/PgLayout.d (working copy) 269 +++ src/pango/PgLayout.d (working copy)
222 @@ -137,7 +137,7 @@ 270 @@ -137,7 +137,7 @@
223 this.pangoLayout = pangoLayout; 271 this.pangoLayout = pangoLayout;
224 } 272 }
225 273
228 { 276 {
229 super.setStruct(obj); 277 super.setStruct(obj);
230 pangoLayout = cast(PangoLayout*)obj; 278 pangoLayout = cast(PangoLayout*)obj;
231 Index: src/pango/PgFontset.d 279 Index: src/pango/PgFontset.d
232 =================================================================== 280 ===================================================================
233 --- src/pango/PgFontset.d (revision 843) 281 --- src/pango/PgFontset.d (revision 844)
234 +++ src/pango/PgFontset.d (working copy) 282 +++ src/pango/PgFontset.d (working copy)
235 @@ -117,7 +117,7 @@ 283 @@ -117,7 +117,7 @@
236 this.pangoFontset = pangoFontset; 284 this.pangoFontset = pangoFontset;
237 } 285 }
238 286
241 { 289 {
242 super.setStruct(obj); 290 super.setStruct(obj);
243 pangoFontset = cast(PangoFontset*)obj; 291 pangoFontset = cast(PangoFontset*)obj;
244 Index: src/pango/PgCairoFontMap.d 292 Index: src/pango/PgCairoFontMap.d
245 =================================================================== 293 ===================================================================
246 --- src/pango/PgCairoFontMap.d (revision 843) 294 --- src/pango/PgCairoFontMap.d (revision 844)
247 +++ src/pango/PgCairoFontMap.d (working copy) 295 +++ src/pango/PgCairoFontMap.d (working copy)
248 @@ -209,7 +209,7 @@ 296 @@ -209,7 +209,7 @@
249 this.pangoCairoFontMap = pangoCairoFontMap; 297 this.pangoCairoFontMap = pangoCairoFontMap;
250 } 298 }
251 299
254 { 302 {
255 super.setStruct(obj); 303 super.setStruct(obj);
256 pangoCairoFontMap = cast(PangoCairoFontMap*)obj; 304 pangoCairoFontMap = cast(PangoCairoFontMap*)obj;
257 Index: src/pango/PgFontMap.d 305 Index: src/pango/PgFontMap.d
258 =================================================================== 306 ===================================================================
259 --- src/pango/PgFontMap.d (revision 843) 307 --- src/pango/PgFontMap.d (revision 844)
260 +++ src/pango/PgFontMap.d (working copy) 308 +++ src/pango/PgFontMap.d (working copy)
261 @@ -130,7 +130,7 @@ 309 @@ -130,7 +130,7 @@
262 this.pangoFontMap = pangoFontMap; 310 this.pangoFontMap = pangoFontMap;
263 } 311 }
264 312
267 { 315 {
268 super.setStruct(obj); 316 super.setStruct(obj);
269 pangoFontMap = cast(PangoFontMap*)obj; 317 pangoFontMap = cast(PangoFontMap*)obj;
270 Index: src/pango/PgEngine.d 318 Index: src/pango/PgEngine.d
271 =================================================================== 319 ===================================================================
272 --- src/pango/PgEngine.d (revision 843) 320 --- src/pango/PgEngine.d (revision 844)
273 +++ src/pango/PgEngine.d (working copy) 321 +++ src/pango/PgEngine.d (working copy)
274 @@ -125,7 +125,7 @@ 322 @@ -125,7 +125,7 @@
275 this.pangoEngine = pangoEngine; 323 this.pangoEngine = pangoEngine;
276 } 324 }
277 325
280 { 328 {
281 super.setStruct(obj); 329 super.setStruct(obj);
282 pangoEngine = cast(PangoEngine*)obj; 330 pangoEngine = cast(PangoEngine*)obj;
283 Index: src/pango/PgFont.d 331 Index: src/pango/PgFont.d
284 =================================================================== 332 ===================================================================
285 --- src/pango/PgFont.d (revision 843) 333 --- src/pango/PgFont.d (revision 844)
286 +++ src/pango/PgFont.d (working copy) 334 +++ src/pango/PgFont.d (working copy)
287 @@ -136,7 +136,7 @@ 335 @@ -136,7 +136,7 @@
288 this.pangoFont = pangoFont; 336 this.pangoFont = pangoFont;
289 } 337 }
290 338
293 { 341 {
294 super.setStruct(obj); 342 super.setStruct(obj);
295 pangoFont = cast(PangoFont*)obj; 343 pangoFont = cast(PangoFont*)obj;
296 Index: src/pango/PgEngineLang.d 344 Index: src/pango/PgEngineLang.d
297 =================================================================== 345 ===================================================================
298 --- src/pango/PgEngineLang.d (revision 843) 346 --- src/pango/PgEngineLang.d (revision 844)
299 +++ src/pango/PgEngineLang.d (working copy) 347 +++ src/pango/PgEngineLang.d (working copy)
300 @@ -107,7 +107,7 @@ 348 @@ -107,7 +107,7 @@
301 this.pangoEngineLang = pangoEngineLang; 349 this.pangoEngineLang = pangoEngineLang;
302 } 350 }
303 351
306 { 354 {
307 super.setStruct(obj); 355 super.setStruct(obj);
308 pangoEngineLang = cast(PangoEngineLang*)obj; 356 pangoEngineLang = cast(PangoEngineLang*)obj;
309 Index: src/pango/PgFontFamily.d 357 Index: src/pango/PgFontFamily.d
310 =================================================================== 358 ===================================================================
311 --- src/pango/PgFontFamily.d (revision 843) 359 --- src/pango/PgFontFamily.d (revision 844)
312 +++ src/pango/PgFontFamily.d (working copy) 360 +++ src/pango/PgFontFamily.d (working copy)
313 @@ -115,7 +115,7 @@ 361 @@ -115,7 +115,7 @@
314 this.pangoFontFamily = pangoFontFamily; 362 this.pangoFontFamily = pangoFontFamily;
315 } 363 }
316 364
319 { 367 {
320 super.setStruct(obj); 368 super.setStruct(obj);
321 pangoFontFamily = cast(PangoFontFamily*)obj; 369 pangoFontFamily = cast(PangoFontFamily*)obj;
322 Index: src/pango/PgContext.d 370 Index: src/pango/PgContext.d
323 =================================================================== 371 ===================================================================
324 --- src/pango/PgContext.d (revision 843) 372 --- src/pango/PgContext.d (revision 844)
325 +++ src/pango/PgContext.d (working copy) 373 +++ src/pango/PgContext.d (working copy)
326 @@ -150,7 +150,7 @@ 374 @@ -150,7 +150,7 @@
327 this.pangoContext = pangoContext; 375 this.pangoContext = pangoContext;
328 } 376 }
329 377
332 { 380 {
333 super.setStruct(obj); 381 super.setStruct(obj);
334 pangoContext = cast(PangoContext*)obj; 382 pangoContext = cast(PangoContext*)obj;
335 Index: src/pango/PgFontFace.d 383 Index: src/pango/PgFontFace.d
336 =================================================================== 384 ===================================================================
337 --- src/pango/PgFontFace.d (revision 843) 385 --- src/pango/PgFontFace.d (revision 844)
338 +++ src/pango/PgFontFace.d (working copy) 386 +++ src/pango/PgFontFace.d (working copy)
339 @@ -115,7 +115,7 @@ 387 @@ -115,7 +115,7 @@
340 this.pangoFontFace = pangoFontFace; 388 this.pangoFontFace = pangoFontFace;
341 } 389 }
342 390
345 { 393 {
346 super.setStruct(obj); 394 super.setStruct(obj);
347 pangoFontFace = cast(PangoFontFace*)obj; 395 pangoFontFace = cast(PangoFontFace*)obj;
348 Index: src/pango/PgEngineShape.d 396 Index: src/pango/PgEngineShape.d
349 =================================================================== 397 ===================================================================
350 --- src/pango/PgEngineShape.d (revision 843) 398 --- src/pango/PgEngineShape.d (revision 844)
351 +++ src/pango/PgEngineShape.d (working copy) 399 +++ src/pango/PgEngineShape.d (working copy)
352 @@ -107,7 +107,7 @@ 400 @@ -107,7 +107,7 @@
353 this.pangoEngineShape = pangoEngineShape; 401 this.pangoEngineShape = pangoEngineShape;
354 } 402 }
355 403
358 { 406 {
359 super.setStruct(obj); 407 super.setStruct(obj);
360 pangoEngineShape = cast(PangoEngineShape*)obj; 408 pangoEngineShape = cast(PangoEngineShape*)obj;
361 Index: src/pango/PgFontsetSimple.d 409 Index: src/pango/PgFontsetSimple.d
362 =================================================================== 410 ===================================================================
363 --- src/pango/PgFontsetSimple.d (revision 843) 411 --- src/pango/PgFontsetSimple.d (revision 844)
364 +++ src/pango/PgFontsetSimple.d (working copy) 412 +++ src/pango/PgFontsetSimple.d (working copy)
365 @@ -118,7 +118,7 @@ 413 @@ -118,7 +118,7 @@
366 this.pangoFontsetSimple = pangoFontsetSimple; 414 this.pangoFontsetSimple = pangoFontsetSimple;
367 } 415 }
368 416
371 { 419 {
372 super.setStruct(obj); 420 super.setStruct(obj);
373 pangoFontsetSimple = cast(PangoFontsetSimple*)obj; 421 pangoFontsetSimple = cast(PangoFontsetSimple*)obj;
374 Index: src/gdk/DisplayManager.d 422 Index: src/gdk/DisplayManager.d
375 =================================================================== 423 ===================================================================
376 --- src/gdk/DisplayManager.d (revision 843) 424 --- src/gdk/DisplayManager.d (revision 844)
377 +++ src/gdk/DisplayManager.d (working copy) 425 +++ src/gdk/DisplayManager.d (working copy)
378 @@ -119,7 +119,7 @@ 426 @@ -119,7 +119,7 @@
379 this.gdkDisplayManager = gdkDisplayManager; 427 this.gdkDisplayManager = gdkDisplayManager;
380 } 428 }
381 429
384 { 432 {
385 super.setStruct(obj); 433 super.setStruct(obj);
386 gdkDisplayManager = cast(GdkDisplayManager*)obj; 434 gdkDisplayManager = cast(GdkDisplayManager*)obj;
387 Index: src/gdk/Window.d 435 Index: src/gdk/Window.d
388 =================================================================== 436 ===================================================================
389 --- src/gdk/Window.d (revision 843) 437 --- src/gdk/Window.d (revision 844)
390 +++ src/gdk/Window.d (working copy) 438 +++ src/gdk/Window.d (working copy)
391 @@ -400,7 +400,7 @@ 439 @@ -400,7 +400,7 @@
392 this.gdkWindow = gdkWindow; 440 this.gdkWindow = gdkWindow;
393 } 441 }
394 442
397 { 445 {
398 super.setStruct(obj); 446 super.setStruct(obj);
399 gdkWindow = cast(GdkWindow*)obj; 447 gdkWindow = cast(GdkWindow*)obj;
400 Index: src/gdk/Keymap.d 448 Index: src/gdk/Keymap.d
401 =================================================================== 449 ===================================================================
402 --- src/gdk/Keymap.d (revision 843) 450 --- src/gdk/Keymap.d (revision 844)
403 +++ src/gdk/Keymap.d (working copy) 451 +++ src/gdk/Keymap.d (working copy)
404 @@ -166,7 +166,7 @@ 452 @@ -166,7 +166,7 @@
405 this.gdkKeymap = gdkKeymap; 453 this.gdkKeymap = gdkKeymap;
406 } 454 }
407 455
410 { 458 {
411 super.setStruct(obj); 459 super.setStruct(obj);
412 gdkKeymap = cast(GdkKeymap*)obj; 460 gdkKeymap = cast(GdkKeymap*)obj;
413 Index: src/gdk/Pixbuf.d 461 Index: src/gdk/Pixbuf.d
414 =================================================================== 462 ===================================================================
415 --- src/gdk/Pixbuf.d (revision 843) 463 --- src/gdk/Pixbuf.d (revision 844)
416 +++ src/gdk/Pixbuf.d (working copy) 464 +++ src/gdk/Pixbuf.d (working copy)
417 @@ -141,7 +141,7 @@ 465 @@ -141,7 +141,7 @@
418 this.gdkPixbuf = gdkPixbuf; 466 this.gdkPixbuf = gdkPixbuf;
419 } 467 }
420 468
423 { 471 {
424 super.setStruct(obj); 472 super.setStruct(obj);
425 gdkPixbuf = cast(GdkPixbuf*)obj; 473 gdkPixbuf = cast(GdkPixbuf*)obj;
426 Index: src/gdk/Pixmap.d 474 Index: src/gdk/Pixmap.d
427 =================================================================== 475 ===================================================================
428 --- src/gdk/Pixmap.d (revision 843) 476 --- src/gdk/Pixmap.d (revision 844)
429 +++ src/gdk/Pixmap.d (working copy) 477 +++ src/gdk/Pixmap.d (working copy)
430 @@ -126,7 +126,7 @@ 478 @@ -126,7 +126,7 @@
431 this.gdkPixmap = gdkPixmap; 479 this.gdkPixmap = gdkPixmap;
432 } 480 }
433 481
436 { 484 {
437 super.setStruct(obj); 485 super.setStruct(obj);
438 gdkPixmap = cast(GdkPixmap*)obj; 486 gdkPixmap = cast(GdkPixmap*)obj;
439 Index: src/gdk/Display.d 487 Index: src/gdk/Display.d
440 =================================================================== 488 ===================================================================
441 --- src/gdk/Display.d (revision 843) 489 --- src/gdk/Display.d (revision 844)
442 +++ src/gdk/Display.d (working copy) 490 +++ src/gdk/Display.d (working copy)
443 @@ -131,7 +131,7 @@ 491 @@ -131,7 +131,7 @@
444 this.gdkDisplay = gdkDisplay; 492 this.gdkDisplay = gdkDisplay;
445 } 493 }
446 494
449 { 497 {
450 super.setStruct(obj); 498 super.setStruct(obj);
451 gdkDisplay = cast(GdkDisplay*)obj; 499 gdkDisplay = cast(GdkDisplay*)obj;
452 Index: src/gdk/Screen.d 500 Index: src/gdk/Screen.d
453 =================================================================== 501 ===================================================================
454 --- src/gdk/Screen.d (revision 843) 502 --- src/gdk/Screen.d (revision 844)
455 +++ src/gdk/Screen.d (working copy) 503 +++ src/gdk/Screen.d (working copy)
456 @@ -150,7 +150,7 @@ 504 @@ -150,7 +150,7 @@
457 this.gdkScreen = gdkScreen; 505 this.gdkScreen = gdkScreen;
458 } 506 }
459 507
462 { 510 {
463 super.setStruct(obj); 511 super.setStruct(obj);
464 gdkScreen = cast(GdkScreen*)obj; 512 gdkScreen = cast(GdkScreen*)obj;
465 Index: src/gdk/Drawable.d 513 Index: src/gdk/Drawable.d
466 =================================================================== 514 ===================================================================
467 --- src/gdk/Drawable.d (revision 843) 515 --- src/gdk/Drawable.d (revision 844)
468 +++ src/gdk/Drawable.d (working copy) 516 +++ src/gdk/Drawable.d (working copy)
469 @@ -170,7 +170,7 @@ 517 @@ -170,7 +170,7 @@
470 this.gdkDrawable = gdkDrawable; 518 this.gdkDrawable = gdkDrawable;
471 } 519 }
472 520
475 { 523 {
476 super.setStruct(obj); 524 super.setStruct(obj);
477 gdkDrawable = cast(GdkDrawable*)obj; 525 gdkDrawable = cast(GdkDrawable*)obj;
478 Index: src/gdk/GC.d 526 Index: src/gdk/GC.d
479 =================================================================== 527 ===================================================================
480 --- src/gdk/GC.d (revision 843) 528 --- src/gdk/GC.d (revision 844)
481 +++ src/gdk/GC.d (working copy) 529 +++ src/gdk/GC.d (working copy)
482 @@ -149,7 +149,7 @@ 530 @@ -149,7 +149,7 @@
483 this.gdkGC = gdkGC; 531 this.gdkGC = gdkGC;
484 } 532 }
485 533
488 { 536 {
489 super.setStruct(obj); 537 super.setStruct(obj);
490 gdkGC = cast(GdkGC*)obj; 538 gdkGC = cast(GdkGC*)obj;
491 Index: src/gtk/Accessible.d 539 Index: src/gtk/Accessible.d
492 =================================================================== 540 ===================================================================
493 --- src/gtk/Accessible.d (revision 843) 541 --- src/gtk/Accessible.d (revision 844)
494 +++ src/gtk/Accessible.d (working copy) 542 +++ src/gtk/Accessible.d (working copy)
495 @@ -105,7 +105,7 @@ 543 @@ -105,7 +105,7 @@
496 this.gtkAccessible = gtkAccessible; 544 this.gtkAccessible = gtkAccessible;
497 } 545 }
498 546
501 { 549 {
502 super.setStruct(obj); 550 super.setStruct(obj);
503 gtkAccessible = cast(GtkAccessible*)obj; 551 gtkAccessible = cast(GtkAccessible*)obj;
504 Index: src/gtk/FileChooserButton.d 552 Index: src/gtk/FileChooserButton.d
505 =================================================================== 553 ===================================================================
506 --- src/gtk/FileChooserButton.d (revision 843) 554 --- src/gtk/FileChooserButton.d (revision 844)
507 +++ src/gtk/FileChooserButton.d (working copy) 555 +++ src/gtk/FileChooserButton.d (working copy)
508 @@ -145,7 +145,7 @@ 556 @@ -145,7 +145,7 @@
509 this.gtkFileChooserButton = gtkFileChooserButton; 557 this.gtkFileChooserButton = gtkFileChooserButton;
510 } 558 }
511 559
514 { 562 {
515 super.setStruct(obj); 563 super.setStruct(obj);
516 gtkFileChooserButton = cast(GtkFileChooserButton*)obj; 564 gtkFileChooserButton = cast(GtkFileChooserButton*)obj;
517 Index: src/gtk/HPaned.d 565 Index: src/gtk/HPaned.d
518 =================================================================== 566 ===================================================================
519 --- src/gtk/HPaned.d (revision 843) 567 --- src/gtk/HPaned.d (revision 844)
520 +++ src/gtk/HPaned.d (working copy) 568 +++ src/gtk/HPaned.d (working copy)
521 @@ -112,7 +112,7 @@ 569 @@ -112,7 +112,7 @@
522 this.gtkHPaned = gtkHPaned; 570 this.gtkHPaned = gtkHPaned;
523 } 571 }
524 572
527 { 575 {
528 super.setStruct(obj); 576 super.setStruct(obj);
529 gtkHPaned = cast(GtkHPaned*)obj; 577 gtkHPaned = cast(GtkHPaned*)obj;
530 Index: src/gtk/RadioMenuItem.d 578 Index: src/gtk/RadioMenuItem.d
531 =================================================================== 579 ===================================================================
532 --- src/gtk/RadioMenuItem.d (revision 843) 580 --- src/gtk/RadioMenuItem.d (revision 844)
533 +++ src/gtk/RadioMenuItem.d (working copy) 581 +++ src/gtk/RadioMenuItem.d (working copy)
534 @@ -144,7 +144,7 @@ 582 @@ -144,7 +144,7 @@
535 this.gtkRadioMenuItem = gtkRadioMenuItem; 583 this.gtkRadioMenuItem = gtkRadioMenuItem;
536 } 584 }
537 585
540 { 588 {
541 super.setStruct(obj); 589 super.setStruct(obj);
542 gtkRadioMenuItem = cast(GtkRadioMenuItem*)obj; 590 gtkRadioMenuItem = cast(GtkRadioMenuItem*)obj;
543 Index: src/gtk/VolumeButton.d 591 Index: src/gtk/VolumeButton.d
544 =================================================================== 592 ===================================================================
545 --- src/gtk/VolumeButton.d (revision 843) 593 --- src/gtk/VolumeButton.d (revision 844)
546 +++ src/gtk/VolumeButton.d (working copy) 594 +++ src/gtk/VolumeButton.d (working copy)
547 @@ -113,7 +113,7 @@ 595 @@ -113,7 +113,7 @@
548 this.gtkVolumeButton = gtkVolumeButton; 596 this.gtkVolumeButton = gtkVolumeButton;
549 } 597 }
550 598
553 { 601 {
554 super.setStruct(obj); 602 super.setStruct(obj);
555 gtkVolumeButton = cast(GtkVolumeButton*)obj; 603 gtkVolumeButton = cast(GtkVolumeButton*)obj;
556 Index: src/gtk/Menu.d 604 Index: src/gtk/Menu.d
557 =================================================================== 605 ===================================================================
558 --- src/gtk/Menu.d (revision 843) 606 --- src/gtk/Menu.d (revision 844)
559 +++ src/gtk/Menu.d (working copy) 607 +++ src/gtk/Menu.d (working copy)
560 @@ -190,7 +190,7 @@ 608 @@ -190,7 +190,7 @@
561 this.gtkMenu = gtkMenu; 609 this.gtkMenu = gtkMenu;
562 } 610 }
563 611
566 { 614 {
567 super.setStruct(obj); 615 super.setStruct(obj);
568 gtkMenu = cast(GtkMenu*)obj; 616 gtkMenu = cast(GtkMenu*)obj;
569 Index: src/gtk/ColorSelectionDialog.d 617 Index: src/gtk/ColorSelectionDialog.d
570 =================================================================== 618 ===================================================================
571 --- src/gtk/ColorSelectionDialog.d (revision 843) 619 --- src/gtk/ColorSelectionDialog.d (revision 844)
572 +++ src/gtk/ColorSelectionDialog.d (working copy) 620 +++ src/gtk/ColorSelectionDialog.d (working copy)
573 @@ -118,7 +118,7 @@ 621 @@ -118,7 +118,7 @@
574 this.gtkColorSelectionDialog = gtkColorSelectionDialog; 622 this.gtkColorSelectionDialog = gtkColorSelectionDialog;
575 } 623 }
576 624
579 { 627 {
580 super.setStruct(obj); 628 super.setStruct(obj);
581 gtkColorSelectionDialog = cast(GtkColorSelectionDialog*)obj; 629 gtkColorSelectionDialog = cast(GtkColorSelectionDialog*)obj;
582 Index: src/gtk/SeparatorMenuItem.d 630 Index: src/gtk/SeparatorMenuItem.d
583 =================================================================== 631 ===================================================================
584 --- src/gtk/SeparatorMenuItem.d (revision 843) 632 --- src/gtk/SeparatorMenuItem.d (revision 844)
585 +++ src/gtk/SeparatorMenuItem.d (working copy) 633 +++ src/gtk/SeparatorMenuItem.d (working copy)
586 @@ -108,7 +108,7 @@ 634 @@ -108,7 +108,7 @@
587 this.gtkSeparatorMenuItem = gtkSeparatorMenuItem; 635 this.gtkSeparatorMenuItem = gtkSeparatorMenuItem;
588 } 636 }
589 637
592 { 640 {
593 super.setStruct(obj); 641 super.setStruct(obj);
594 gtkSeparatorMenuItem = cast(GtkSeparatorMenuItem*)obj; 642 gtkSeparatorMenuItem = cast(GtkSeparatorMenuItem*)obj;
595 Index: src/gtk/Expander.d 643 Index: src/gtk/Expander.d
596 =================================================================== 644 ===================================================================
597 --- src/gtk/Expander.d (revision 843) 645 --- src/gtk/Expander.d (revision 844)
598 +++ src/gtk/Expander.d (working copy) 646 +++ src/gtk/Expander.d (working copy)
599 @@ -171,7 +171,7 @@ 647 @@ -171,7 +171,7 @@
600 this.gtkExpander = gtkExpander; 648 this.gtkExpander = gtkExpander;
601 } 649 }
602 650
605 { 653 {
606 super.setStruct(obj); 654 super.setStruct(obj);
607 gtkExpander = cast(GtkExpander*)obj; 655 gtkExpander = cast(GtkExpander*)obj;
608 Index: src/gtk/Assistant.d 656 Index: src/gtk/Assistant.d
609 =================================================================== 657 ===================================================================
610 --- src/gtk/Assistant.d (revision 843) 658 --- src/gtk/Assistant.d (revision 844)
611 +++ src/gtk/Assistant.d (working copy) 659 +++ src/gtk/Assistant.d (working copy)
612 @@ -123,7 +123,7 @@ 660 @@ -123,7 +123,7 @@
613 this.gtkAssistant = gtkAssistant; 661 this.gtkAssistant = gtkAssistant;
614 } 662 }
615 663
618 { 666 {
619 super.setStruct(obj); 667 super.setStruct(obj);
620 gtkAssistant = cast(GtkAssistant*)obj; 668 gtkAssistant = cast(GtkAssistant*)obj;
621 Index: src/gtk/CellRendererText.d 669 Index: src/gtk/CellRendererText.d
622 =================================================================== 670 ===================================================================
623 --- src/gtk/CellRendererText.d (revision 843) 671 --- src/gtk/CellRendererText.d (revision 844)
624 +++ src/gtk/CellRendererText.d (working copy) 672 +++ src/gtk/CellRendererText.d (working copy)
625 @@ -118,7 +118,7 @@ 673 @@ -118,7 +118,7 @@
626 this.gtkCellRendererText = gtkCellRendererText; 674 this.gtkCellRendererText = gtkCellRendererText;
627 } 675 }
628 676
631 { 679 {
632 super.setStruct(obj); 680 super.setStruct(obj);
633 gtkCellRendererText = cast(GtkCellRendererText*)obj; 681 gtkCellRendererText = cast(GtkCellRendererText*)obj;
634 Index: src/gtk/FontSelection.d 682 Index: src/gtk/FontSelection.d
635 =================================================================== 683 ===================================================================
636 --- src/gtk/FontSelection.d (revision 843) 684 --- src/gtk/FontSelection.d (revision 844)
637 +++ src/gtk/FontSelection.d (working copy) 685 +++ src/gtk/FontSelection.d (working copy)
638 @@ -128,7 +128,7 @@ 686 @@ -128,7 +128,7 @@
639 this.gtkFontSelection = gtkFontSelection; 687 this.gtkFontSelection = gtkFontSelection;
640 } 688 }
641 689
644 { 692 {
645 super.setStruct(obj); 693 super.setStruct(obj);
646 gtkFontSelection = cast(GtkFontSelection*)obj; 694 gtkFontSelection = cast(GtkFontSelection*)obj;
647 Index: src/gtk/Tooltips.d 695 Index: src/gtk/Tooltips.d
648 =================================================================== 696 ===================================================================
649 --- src/gtk/Tooltips.d (revision 843) 697 --- src/gtk/Tooltips.d (revision 844)
650 +++ src/gtk/Tooltips.d (working copy) 698 +++ src/gtk/Tooltips.d (working copy)
651 @@ -178,7 +178,7 @@ 699 @@ -178,7 +178,7 @@
652 this.gtkTooltips = gtkTooltips; 700 this.gtkTooltips = gtkTooltips;
653 } 701 }
654 702
657 { 705 {
658 super.setStruct(obj); 706 super.setStruct(obj);
659 gtkTooltips = cast(GtkTooltips*)obj; 707 gtkTooltips = cast(GtkTooltips*)obj;
660 Index: src/gtk/SeparatorToolItem.d 708 Index: src/gtk/SeparatorToolItem.d
661 =================================================================== 709 ===================================================================
662 --- src/gtk/SeparatorToolItem.d (revision 843) 710 --- src/gtk/SeparatorToolItem.d (revision 844)
663 +++ src/gtk/SeparatorToolItem.d (working copy) 711 +++ src/gtk/SeparatorToolItem.d (working copy)
664 @@ -115,7 +115,7 @@ 712 @@ -115,7 +115,7 @@
665 this.gtkSeparatorToolItem = gtkSeparatorToolItem; 713 this.gtkSeparatorToolItem = gtkSeparatorToolItem;
666 } 714 }
667 715
670 { 718 {
671 super.setStruct(obj); 719 super.setStruct(obj);
672 gtkSeparatorToolItem = cast(GtkSeparatorToolItem*)obj; 720 gtkSeparatorToolItem = cast(GtkSeparatorToolItem*)obj;
673 Index: src/gtk/Layout.d 721 Index: src/gtk/Layout.d
674 =================================================================== 722 ===================================================================
675 --- src/gtk/Layout.d (revision 843) 723 --- src/gtk/Layout.d (revision 844)
676 +++ src/gtk/Layout.d (working copy) 724 +++ src/gtk/Layout.d (working copy)
677 @@ -126,7 +126,7 @@ 725 @@ -126,7 +126,7 @@
678 this.gtkLayout = gtkLayout; 726 this.gtkLayout = gtkLayout;
679 } 727 }
680 728
683 { 731 {
684 super.setStruct(obj); 732 super.setStruct(obj);
685 gtkLayout = cast(GtkLayout*)obj; 733 gtkLayout = cast(GtkLayout*)obj;
686 Index: src/gtk/PrintOperation.d 734 Index: src/gtk/PrintOperation.d
687 =================================================================== 735 ===================================================================
688 --- src/gtk/PrintOperation.d (revision 843) 736 --- src/gtk/PrintOperation.d (revision 844)
689 +++ src/gtk/PrintOperation.d (working copy) 737 +++ src/gtk/PrintOperation.d (working copy)
690 @@ -202,7 +202,7 @@ 738 @@ -202,7 +202,7 @@
691 this.gtkPrintOperation = gtkPrintOperation; 739 this.gtkPrintOperation = gtkPrintOperation;
692 } 740 }
693 741
696 { 744 {
697 super.setStruct(obj); 745 super.setStruct(obj);
698 gtkPrintOperation = cast(GtkPrintOperation*)obj; 746 gtkPrintOperation = cast(GtkPrintOperation*)obj;
699 Index: src/gtk/Spinner.d 747 Index: src/gtk/Spinner.d
700 =================================================================== 748 ===================================================================
701 --- src/gtk/Spinner.d (revision 843) 749 --- src/gtk/Spinner.d (revision 844)
702 +++ src/gtk/Spinner.d (working copy) 750 +++ src/gtk/Spinner.d (working copy)
703 @@ -109,7 +109,7 @@ 751 @@ -109,7 +109,7 @@
704 this.gtkSpinner = gtkSpinner; 752 this.gtkSpinner = gtkSpinner;
705 } 753 }
706 754
709 { 757 {
710 super.setStruct(obj); 758 super.setStruct(obj);
711 gtkSpinner = cast(GtkSpinner*)obj; 759 gtkSpinner = cast(GtkSpinner*)obj;
712 Index: src/gtk/TextTag.d 760 Index: src/gtk/TextTag.d
713 =================================================================== 761 ===================================================================
714 --- src/gtk/TextTag.d (revision 843) 762 --- src/gtk/TextTag.d (revision 844)
715 +++ src/gtk/TextTag.d (working copy) 763 +++ src/gtk/TextTag.d (working copy)
716 @@ -128,7 +128,7 @@ 764 @@ -128,7 +128,7 @@
717 this.gtkTextTag = gtkTextTag; 765 this.gtkTextTag = gtkTextTag;
718 } 766 }
719 767
722 { 770 {
723 super.setStruct(obj); 771 super.setStruct(obj);
724 gtkTextTag = cast(GtkTextTag*)obj; 772 gtkTextTag = cast(GtkTextTag*)obj;
725 Index: src/gtk/IconView.d 773 Index: src/gtk/IconView.d
726 =================================================================== 774 ===================================================================
727 --- src/gtk/IconView.d (revision 843) 775 --- src/gtk/IconView.d (revision 844)
728 +++ src/gtk/IconView.d (working copy) 776 +++ src/gtk/IconView.d (working copy)
729 @@ -141,7 +141,7 @@ 777 @@ -141,7 +141,7 @@
730 this.gtkIconView = gtkIconView; 778 this.gtkIconView = gtkIconView;
731 } 779 }
732 780
735 { 783 {
736 super.setStruct(obj); 784 super.setStruct(obj);
737 gtkIconView = cast(GtkIconView*)obj; 785 gtkIconView = cast(GtkIconView*)obj;
738 Index: src/gtk/AccelGroup.d 786 Index: src/gtk/AccelGroup.d
739 =================================================================== 787 ===================================================================
740 --- src/gtk/AccelGroup.d (revision 843) 788 --- src/gtk/AccelGroup.d (revision 844)
741 +++ src/gtk/AccelGroup.d (working copy) 789 +++ src/gtk/AccelGroup.d (working copy)
742 @@ -135,7 +135,7 @@ 790 @@ -135,7 +135,7 @@
743 this.gtkAccelGroup = gtkAccelGroup; 791 this.gtkAccelGroup = gtkAccelGroup;
744 } 792 }
745 793
748 { 796 {
749 super.setStruct(obj); 797 super.setStruct(obj);
750 gtkAccelGroup = cast(GtkAccelGroup*)obj; 798 gtkAccelGroup = cast(GtkAccelGroup*)obj;
751 Index: src/gtk/FileFilter.d 799 Index: src/gtk/FileFilter.d
752 =================================================================== 800 ===================================================================
753 --- src/gtk/FileFilter.d (revision 843) 801 --- src/gtk/FileFilter.d (revision 844)
754 +++ src/gtk/FileFilter.d (working copy) 802 +++ src/gtk/FileFilter.d (working copy)
755 @@ -120,7 +120,7 @@ 803 @@ -120,7 +120,7 @@
756 this.gtkFileFilter = gtkFileFilter; 804 this.gtkFileFilter = gtkFileFilter;
757 } 805 }
758 806
761 { 809 {
762 super.setStruct(obj); 810 super.setStruct(obj);
763 gtkFileFilter = cast(GtkFileFilter*)obj; 811 gtkFileFilter = cast(GtkFileFilter*)obj;
764 Index: src/gtk/Builder.d 812 Index: src/gtk/Builder.d
765 =================================================================== 813 ===================================================================
766 --- src/gtk/Builder.d (revision 843) 814 --- src/gtk/Builder.d (revision 844)
767 +++ src/gtk/Builder.d (working copy) 815 +++ src/gtk/Builder.d (working copy)
768 @@ -358,7 +358,7 @@ 816 @@ -358,7 +358,7 @@
769 this.gtkBuilder = gtkBuilder; 817 this.gtkBuilder = gtkBuilder;
770 } 818 }
771 819
774 { 822 {
775 super.setStruct(obj); 823 super.setStruct(obj);
776 gtkBuilder = cast(GtkBuilder*)obj; 824 gtkBuilder = cast(GtkBuilder*)obj;
777 Index: src/gtk/VSeparator.d 825 Index: src/gtk/VSeparator.d
778 =================================================================== 826 ===================================================================
779 --- src/gtk/VSeparator.d (revision 843) 827 --- src/gtk/VSeparator.d (revision 844)
780 +++ src/gtk/VSeparator.d (working copy) 828 +++ src/gtk/VSeparator.d (working copy)
781 @@ -108,7 +108,7 @@ 829 @@ -108,7 +108,7 @@
782 this.gtkVSeparator = gtkVSeparator; 830 this.gtkVSeparator = gtkVSeparator;
783 } 831 }
784 832
787 { 835 {
788 super.setStruct(obj); 836 super.setStruct(obj);
789 gtkVSeparator = cast(GtkVSeparator*)obj; 837 gtkVSeparator = cast(GtkVSeparator*)obj;
790 Index: src/gtk/SizeGroup.d 838 Index: src/gtk/SizeGroup.d
791 =================================================================== 839 ===================================================================
792 --- src/gtk/SizeGroup.d (revision 843) 840 --- src/gtk/SizeGroup.d (revision 844)
793 +++ src/gtk/SizeGroup.d (working copy) 841 +++ src/gtk/SizeGroup.d (working copy)
794 @@ -167,7 +167,7 @@ 842 @@ -167,7 +167,7 @@
795 this.gtkSizeGroup = gtkSizeGroup; 843 this.gtkSizeGroup = gtkSizeGroup;
796 } 844 }
797 845
800 { 848 {
801 super.setStruct(obj); 849 super.setStruct(obj);
802 gtkSizeGroup = cast(GtkSizeGroup*)obj; 850 gtkSizeGroup = cast(GtkSizeGroup*)obj;
803 Index: src/gtk/Box.d 851 Index: src/gtk/Box.d
804 =================================================================== 852 ===================================================================
805 --- src/gtk/Box.d (revision 843) 853 --- src/gtk/Box.d (revision 844)
806 +++ src/gtk/Box.d (working copy) 854 +++ src/gtk/Box.d (working copy)
807 @@ -150,7 +150,7 @@ 855 @@ -150,7 +150,7 @@
808 this.gtkBox = gtkBox; 856 this.gtkBox = gtkBox;
809 } 857 }
810 858
813 { 861 {
814 super.setStruct(obj); 862 super.setStruct(obj);
815 gtkBox = cast(GtkBox*)obj; 863 gtkBox = cast(GtkBox*)obj;
816 Index: src/gtk/EventBox.d 864 Index: src/gtk/EventBox.d
817 =================================================================== 865 ===================================================================
818 --- src/gtk/EventBox.d (revision 843) 866 --- src/gtk/EventBox.d (revision 844)
819 +++ src/gtk/EventBox.d (working copy) 867 +++ src/gtk/EventBox.d (working copy)
820 @@ -108,7 +108,7 @@ 868 @@ -108,7 +108,7 @@
821 this.gtkEventBox = gtkEventBox; 869 this.gtkEventBox = gtkEventBox;
822 } 870 }
823 871
826 { 874 {
827 super.setStruct(obj); 875 super.setStruct(obj);
828 gtkEventBox = cast(GtkEventBox*)obj; 876 gtkEventBox = cast(GtkEventBox*)obj;
829 Index: src/gtk/CellRendererAccel.d 877 Index: src/gtk/CellRendererAccel.d
830 =================================================================== 878 ===================================================================
831 --- src/gtk/CellRendererAccel.d (revision 843) 879 --- src/gtk/CellRendererAccel.d (revision 844)
832 +++ src/gtk/CellRendererAccel.d (working copy) 880 +++ src/gtk/CellRendererAccel.d (working copy)
833 @@ -116,7 +116,7 @@ 881 @@ -116,7 +116,7 @@
834 this.gtkCellRendererAccel = gtkCellRendererAccel; 882 this.gtkCellRendererAccel = gtkCellRendererAccel;
835 } 883 }
836 884
839 { 887 {
840 super.setStruct(obj); 888 super.setStruct(obj);
841 gtkCellRendererAccel = cast(GtkCellRendererAccel*)obj; 889 gtkCellRendererAccel = cast(GtkCellRendererAccel*)obj;
842 Index: src/gtk/TextMark.d 890 Index: src/gtk/TextMark.d
843 =================================================================== 891 ===================================================================
844 --- src/gtk/TextMark.d (revision 843) 892 --- src/gtk/TextMark.d (revision 844)
845 +++ src/gtk/TextMark.d (working copy) 893 +++ src/gtk/TextMark.d (working copy)
846 @@ -130,7 +130,7 @@ 894 @@ -130,7 +130,7 @@
847 this.gtkTextMark = gtkTextMark; 895 this.gtkTextMark = gtkTextMark;
848 } 896 }
849 897
852 { 900 {
853 super.setStruct(obj); 901 super.setStruct(obj);
854 gtkTextMark = cast(GtkTextMark*)obj; 902 gtkTextMark = cast(GtkTextMark*)obj;
855 Index: src/gtk/OffscreenWindow.d 903 Index: src/gtk/OffscreenWindow.d
856 =================================================================== 904 ===================================================================
857 --- src/gtk/OffscreenWindow.d (revision 843) 905 --- src/gtk/OffscreenWindow.d (revision 844)
858 +++ src/gtk/OffscreenWindow.d (working copy) 906 +++ src/gtk/OffscreenWindow.d (working copy)
859 @@ -129,7 +129,7 @@ 907 @@ -129,7 +129,7 @@
860 this.gtkOffscreenWindow = gtkOffscreenWindow; 908 this.gtkOffscreenWindow = gtkOffscreenWindow;
861 } 909 }
862 910
865 { 913 {
866 super.setStruct(obj); 914 super.setStruct(obj);
867 gtkOffscreenWindow = cast(GtkOffscreenWindow*)obj; 915 gtkOffscreenWindow = cast(GtkOffscreenWindow*)obj;
868 Index: src/gtk/HandleBox.d 916 Index: src/gtk/HandleBox.d
869 =================================================================== 917 ===================================================================
870 --- src/gtk/HandleBox.d (revision 843) 918 --- src/gtk/HandleBox.d (revision 844)
871 +++ src/gtk/HandleBox.d (working copy) 919 +++ src/gtk/HandleBox.d (working copy)
872 @@ -126,7 +126,7 @@ 920 @@ -126,7 +126,7 @@
873 this.gtkHandleBox = gtkHandleBox; 921 this.gtkHandleBox = gtkHandleBox;
874 } 922 }
875 923
878 { 926 {
879 super.setStruct(obj); 927 super.setStruct(obj);
880 gtkHandleBox = cast(GtkHandleBox*)obj; 928 gtkHandleBox = cast(GtkHandleBox*)obj;
881 Index: src/gtk/AccelMap.d 929 Index: src/gtk/AccelMap.d
882 =================================================================== 930 ===================================================================
883 --- src/gtk/AccelMap.d (revision 843) 931 --- src/gtk/AccelMap.d (revision 844)
884 +++ src/gtk/AccelMap.d (working copy) 932 +++ src/gtk/AccelMap.d (working copy)
885 @@ -115,7 +115,7 @@ 933 @@ -115,7 +115,7 @@
886 this.gtkAccelMap = gtkAccelMap; 934 this.gtkAccelMap = gtkAccelMap;
887 } 935 }
888 936
891 { 939 {
892 super.setStruct(obj); 940 super.setStruct(obj);
893 gtkAccelMap = cast(GtkAccelMap*)obj; 941 gtkAccelMap = cast(GtkAccelMap*)obj;
894 Index: src/gtk/RecentChooserWidget.d 942 Index: src/gtk/RecentChooserWidget.d
895 =================================================================== 943 ===================================================================
896 --- src/gtk/RecentChooserWidget.d (revision 843) 944 --- src/gtk/RecentChooserWidget.d (revision 844)
897 +++ src/gtk/RecentChooserWidget.d (working copy) 945 +++ src/gtk/RecentChooserWidget.d (working copy)
898 @@ -123,7 +123,7 @@ 946 @@ -123,7 +123,7 @@
899 this.gtkRecentChooserWidget = gtkRecentChooserWidget; 947 this.gtkRecentChooserWidget = gtkRecentChooserWidget;
900 } 948 }
901 949
904 { 952 {
905 super.setStruct(obj); 953 super.setStruct(obj);
906 gtkRecentChooserWidget = cast(GtkRecentChooserWidget*)obj; 954 gtkRecentChooserWidget = cast(GtkRecentChooserWidget*)obj;
907 Index: src/gtk/VScrollbar.d 955 Index: src/gtk/VScrollbar.d
908 =================================================================== 956 ===================================================================
909 --- src/gtk/VScrollbar.d (revision 843) 957 --- src/gtk/VScrollbar.d (revision 844)
910 +++ src/gtk/VScrollbar.d (working copy) 958 +++ src/gtk/VScrollbar.d (working copy)
911 @@ -114,7 +114,7 @@ 959 @@ -114,7 +114,7 @@
912 this.gtkVScrollbar = gtkVScrollbar; 960 this.gtkVScrollbar = gtkVScrollbar;
913 } 961 }
914 962
917 { 965 {
918 super.setStruct(obj); 966 super.setStruct(obj);
919 gtkVScrollbar = cast(GtkVScrollbar*)obj; 967 gtkVScrollbar = cast(GtkVScrollbar*)obj;
920 Index: src/gtk/CellView.d 968 Index: src/gtk/CellView.d
921 =================================================================== 969 ===================================================================
922 --- src/gtk/CellView.d (revision 843) 970 --- src/gtk/CellView.d (revision 844)
923 +++ src/gtk/CellView.d (working copy) 971 +++ src/gtk/CellView.d (working copy)
924 @@ -135,7 +135,7 @@ 972 @@ -135,7 +135,7 @@
925 this.gtkCellView = gtkCellView; 973 this.gtkCellView = gtkCellView;
926 } 974 }
927 975
930 { 978 {
931 super.setStruct(obj); 979 super.setStruct(obj);
932 gtkCellView = cast(GtkCellView*)obj; 980 gtkCellView = cast(GtkCellView*)obj;
933 Index: src/gtk/ToggleButton.d 981 Index: src/gtk/ToggleButton.d
934 =================================================================== 982 ===================================================================
935 --- src/gtk/ToggleButton.d (revision 843) 983 --- src/gtk/ToggleButton.d (revision 844)
936 +++ src/gtk/ToggleButton.d (working copy) 984 +++ src/gtk/ToggleButton.d (working copy)
937 @@ -159,7 +159,7 @@ 985 @@ -159,7 +159,7 @@
938 this.gtkToggleButton = gtkToggleButton; 986 this.gtkToggleButton = gtkToggleButton;
939 } 987 }
940 988
943 { 991 {
944 super.setStruct(obj); 992 super.setStruct(obj);
945 gtkToggleButton = cast(GtkToggleButton*)obj; 993 gtkToggleButton = cast(GtkToggleButton*)obj;
946 Index: src/gtk/VScale.d 994 Index: src/gtk/VScale.d
947 =================================================================== 995 ===================================================================
948 --- src/gtk/VScale.d (revision 843) 996 --- src/gtk/VScale.d (revision 844)
949 +++ src/gtk/VScale.d (working copy) 997 +++ src/gtk/VScale.d (working copy)
950 @@ -112,7 +112,7 @@ 998 @@ -112,7 +112,7 @@
951 this.gtkVScale = gtkVScale; 999 this.gtkVScale = gtkVScale;
952 } 1000 }
953 1001
956 { 1004 {
957 super.setStruct(obj); 1005 super.setStruct(obj);
958 gtkVScale = cast(GtkVScale*)obj; 1006 gtkVScale = cast(GtkVScale*)obj;
959 Index: src/gtk/Alignment.d 1007 Index: src/gtk/Alignment.d
960 =================================================================== 1008 ===================================================================
961 --- src/gtk/Alignment.d (revision 843) 1009 --- src/gtk/Alignment.d (revision 844)
962 +++ src/gtk/Alignment.d (working copy) 1010 +++ src/gtk/Alignment.d (working copy)
963 @@ -117,7 +117,7 @@ 1011 @@ -117,7 +117,7 @@
964 this.gtkAlignment = gtkAlignment; 1012 this.gtkAlignment = gtkAlignment;
965 } 1013 }
966 1014
969 { 1017 {
970 super.setStruct(obj); 1018 super.setStruct(obj);
971 gtkAlignment = cast(GtkAlignment*)obj; 1019 gtkAlignment = cast(GtkAlignment*)obj;
972 Index: src/gtk/RecentAction.d 1020 Index: src/gtk/RecentAction.d
973 =================================================================== 1021 ===================================================================
974 --- src/gtk/RecentAction.d (revision 843) 1022 --- src/gtk/RecentAction.d (revision 844)
975 +++ src/gtk/RecentAction.d (working copy) 1023 +++ src/gtk/RecentAction.d (working copy)
976 @@ -119,7 +119,7 @@ 1024 @@ -119,7 +119,7 @@
977 this.gtkRecentAction = gtkRecentAction; 1025 this.gtkRecentAction = gtkRecentAction;
978 } 1026 }
979 1027
982 { 1030 {
983 super.setStruct(obj); 1031 super.setStruct(obj);
984 gtkRecentAction = cast(GtkRecentAction*)obj; 1032 gtkRecentAction = cast(GtkRecentAction*)obj;
985 Index: src/gtk/VBox.d 1033 Index: src/gtk/VBox.d
986 =================================================================== 1034 ===================================================================
987 --- src/gtk/VBox.d (revision 843) 1035 --- src/gtk/VBox.d (revision 844)
988 +++ src/gtk/VBox.d (working copy) 1036 +++ src/gtk/VBox.d (working copy)
989 @@ -109,7 +109,7 @@ 1037 @@ -109,7 +109,7 @@
990 this.gtkVBox = gtkVBox; 1038 this.gtkVBox = gtkVBox;
991 } 1039 }
992 1040
995 { 1043 {
996 super.setStruct(obj); 1044 super.setStruct(obj);
997 gtkVBox = cast(GtkVBox*)obj; 1045 gtkVBox = cast(GtkVBox*)obj;
998 Index: src/gtk/ToggleAction.d 1046 Index: src/gtk/ToggleAction.d
999 =================================================================== 1047 ===================================================================
1000 --- src/gtk/ToggleAction.d (revision 843) 1048 --- src/gtk/ToggleAction.d (revision 844)
1001 +++ src/gtk/ToggleAction.d (working copy) 1049 +++ src/gtk/ToggleAction.d (working copy)
1002 @@ -111,7 +111,7 @@ 1050 @@ -111,7 +111,7 @@
1003 this.gtkToggleAction = gtkToggleAction; 1051 this.gtkToggleAction = gtkToggleAction;
1004 } 1052 }
1005 1053
1008 { 1056 {
1009 super.setStruct(obj); 1057 super.setStruct(obj);
1010 gtkToggleAction = cast(GtkToggleAction*)obj; 1058 gtkToggleAction = cast(GtkToggleAction*)obj;
1011 Index: src/gtk/ScaleButton.d 1059 Index: src/gtk/ScaleButton.d
1012 =================================================================== 1060 ===================================================================
1013 --- src/gtk/ScaleButton.d (revision 843) 1061 --- src/gtk/ScaleButton.d (revision 844)
1014 +++ src/gtk/ScaleButton.d (working copy) 1062 +++ src/gtk/ScaleButton.d (working copy)
1015 @@ -126,7 +126,7 @@ 1063 @@ -126,7 +126,7 @@
1016 this.gtkScaleButton = gtkScaleButton; 1064 this.gtkScaleButton = gtkScaleButton;
1017 } 1065 }
1018 1066
1021 { 1069 {
1022 super.setStruct(obj); 1070 super.setStruct(obj);
1023 gtkScaleButton = cast(GtkScaleButton*)obj; 1071 gtkScaleButton = cast(GtkScaleButton*)obj;
1024 Index: src/gtk/IMContextSimple.d 1072 Index: src/gtk/IMContextSimple.d
1025 =================================================================== 1073 ===================================================================
1026 --- src/gtk/IMContextSimple.d (revision 843) 1074 --- src/gtk/IMContextSimple.d (revision 844)
1027 +++ src/gtk/IMContextSimple.d (working copy) 1075 +++ src/gtk/IMContextSimple.d (working copy)
1028 @@ -108,7 +108,7 @@ 1076 @@ -108,7 +108,7 @@
1029 this.gtkIMContextSimple = gtkIMContextSimple; 1077 this.gtkIMContextSimple = gtkIMContextSimple;
1030 } 1078 }
1031 1079
1034 { 1082 {
1035 super.setStruct(obj); 1083 super.setStruct(obj);
1036 gtkIMContextSimple = cast(GtkIMContextSimple*)obj; 1084 gtkIMContextSimple = cast(GtkIMContextSimple*)obj;
1037 Index: src/gtk/ButtonBox.d 1085 Index: src/gtk/ButtonBox.d
1038 =================================================================== 1086 ===================================================================
1039 --- src/gtk/ButtonBox.d (revision 843) 1087 --- src/gtk/ButtonBox.d (revision 844)
1040 +++ src/gtk/ButtonBox.d (working copy) 1088 +++ src/gtk/ButtonBox.d (working copy)
1041 @@ -129,7 +129,7 @@ 1089 @@ -129,7 +129,7 @@
1042 this.gtkButtonBox = gtkButtonBox; 1090 this.gtkButtonBox = gtkButtonBox;
1043 } 1091 }
1044 1092
1047 { 1095 {
1048 super.setStruct(obj); 1096 super.setStruct(obj);
1049 gtkButtonBox = cast(GtkButtonBox*)obj; 1097 gtkButtonBox = cast(GtkButtonBox*)obj;
1050 Index: src/gtk/Curve.d 1098 Index: src/gtk/Curve.d
1051 =================================================================== 1099 ===================================================================
1052 --- src/gtk/Curve.d (revision 843) 1100 --- src/gtk/Curve.d (revision 844)
1053 +++ src/gtk/Curve.d (working copy) 1101 +++ src/gtk/Curve.d (working copy)
1054 @@ -116,7 +116,7 @@ 1102 @@ -116,7 +116,7 @@
1055 this.gtkCurve = gtkCurve; 1103 this.gtkCurve = gtkCurve;
1056 } 1104 }
1057 1105
1060 { 1108 {
1061 super.setStruct(obj); 1109 super.setStruct(obj);
1062 gtkCurve = cast(GtkCurve*)obj; 1110 gtkCurve = cast(GtkCurve*)obj;
1063 Index: src/gtk/TearoffMenuItem.d 1111 Index: src/gtk/TearoffMenuItem.d
1064 =================================================================== 1112 ===================================================================
1065 --- src/gtk/TearoffMenuItem.d (revision 843) 1113 --- src/gtk/TearoffMenuItem.d (revision 844)
1066 +++ src/gtk/TearoffMenuItem.d (working copy) 1114 +++ src/gtk/TearoffMenuItem.d (working copy)
1067 @@ -115,7 +115,7 @@ 1115 @@ -115,7 +115,7 @@
1068 this.gtkTearoffMenuItem = gtkTearoffMenuItem; 1116 this.gtkTearoffMenuItem = gtkTearoffMenuItem;
1069 } 1117 }
1070 1118
1073 { 1121 {
1074 super.setStruct(obj); 1122 super.setStruct(obj);
1075 gtkTearoffMenuItem = cast(GtkTearoffMenuItem*)obj; 1123 gtkTearoffMenuItem = cast(GtkTearoffMenuItem*)obj;
1076 Index: src/gtk/CellRendererProgress.d 1124 Index: src/gtk/CellRendererProgress.d
1077 =================================================================== 1125 ===================================================================
1078 --- src/gtk/CellRendererProgress.d (revision 843) 1126 --- src/gtk/CellRendererProgress.d (revision 844)
1079 +++ src/gtk/CellRendererProgress.d (working copy) 1127 +++ src/gtk/CellRendererProgress.d (working copy)
1080 @@ -111,7 +111,7 @@ 1128 @@ -111,7 +111,7 @@
1081 this.gtkCellRendererProgress = gtkCellRendererProgress; 1129 this.gtkCellRendererProgress = gtkCellRendererProgress;
1082 } 1130 }
1083 1131
1086 { 1134 {
1087 super.setStruct(obj); 1135 super.setStruct(obj);
1088 gtkCellRendererProgress = cast(GtkCellRendererProgress*)obj; 1136 gtkCellRendererProgress = cast(GtkCellRendererProgress*)obj;
1089 Index: src/gtk/Range.d 1137 Index: src/gtk/Range.d
1090 =================================================================== 1138 ===================================================================
1091 --- src/gtk/Range.d (revision 843) 1139 --- src/gtk/Range.d (revision 844)
1092 +++ src/gtk/Range.d (working copy) 1140 +++ src/gtk/Range.d (working copy)
1093 @@ -124,7 +124,7 @@ 1141 @@ -124,7 +124,7 @@
1094 this.gtkRange = gtkRange; 1142 this.gtkRange = gtkRange;
1095 } 1143 }
1096 1144
1099 { 1147 {
1100 super.setStruct(obj); 1148 super.setStruct(obj);
1101 gtkRange = cast(GtkRange*)obj; 1149 gtkRange = cast(GtkRange*)obj;
1102 Index: src/gtk/Clipboard.d 1150 Index: src/gtk/Clipboard.d
1103 =================================================================== 1151 ===================================================================
1104 --- src/gtk/Clipboard.d (revision 843) 1152 --- src/gtk/Clipboard.d (revision 844)
1105 +++ src/gtk/Clipboard.d (working copy) 1153 +++ src/gtk/Clipboard.d (working copy)
1106 @@ -175,7 +175,7 @@ 1154 @@ -175,7 +175,7 @@
1107 this.gtkClipboard = gtkClipboard; 1155 this.gtkClipboard = gtkClipboard;
1108 } 1156 }
1109 1157
1112 { 1160 {
1113 super.setStruct(obj); 1161 super.setStruct(obj);
1114 gtkClipboard = cast(GtkClipboard*)obj; 1162 gtkClipboard = cast(GtkClipboard*)obj;
1115 Index: src/gtk/Fixed.d 1163 Index: src/gtk/Fixed.d
1116 =================================================================== 1164 ===================================================================
1117 --- src/gtk/Fixed.d (revision 843) 1165 --- src/gtk/Fixed.d (revision 844)
1118 +++ src/gtk/Fixed.d (working copy) 1166 +++ src/gtk/Fixed.d (working copy)
1119 @@ -137,7 +137,7 @@ 1167 @@ -137,7 +137,7 @@
1120 this.gtkFixed = gtkFixed; 1168 this.gtkFixed = gtkFixed;
1121 } 1169 }
1122 1170
1125 { 1173 {
1126 super.setStruct(obj); 1174 super.setStruct(obj);
1127 gtkFixed = cast(GtkFixed*)obj; 1175 gtkFixed = cast(GtkFixed*)obj;
1128 Index: src/gtk/PrintContext.d 1176 Index: src/gtk/PrintContext.d
1129 =================================================================== 1177 ===================================================================
1130 --- src/gtk/PrintContext.d (revision 843) 1178 --- src/gtk/PrintContext.d (revision 844)
1131 +++ src/gtk/PrintContext.d (working copy) 1179 +++ src/gtk/PrintContext.d (working copy)
1132 @@ -209,7 +209,7 @@ 1180 @@ -209,7 +209,7 @@
1133 this.gtkPrintContext = gtkPrintContext; 1181 this.gtkPrintContext = gtkPrintContext;
1134 } 1182 }
1135 1183
1138 { 1186 {
1139 super.setStruct(obj); 1187 super.setStruct(obj);
1140 gtkPrintContext = cast(GtkPrintContext*)obj; 1188 gtkPrintContext = cast(GtkPrintContext*)obj;
1141 Index: src/gtk/FontButton.d 1189 Index: src/gtk/FontButton.d
1142 =================================================================== 1190 ===================================================================
1143 --- src/gtk/FontButton.d (revision 843) 1191 --- src/gtk/FontButton.d (revision 844)
1144 +++ src/gtk/FontButton.d (working copy) 1192 +++ src/gtk/FontButton.d (working copy)
1145 @@ -111,7 +111,7 @@ 1193 @@ -111,7 +111,7 @@
1146 this.gtkFontButton = gtkFontButton; 1194 this.gtkFontButton = gtkFontButton;
1147 } 1195 }
1148 1196
1151 { 1199 {
1152 super.setStruct(obj); 1200 super.setStruct(obj);
1153 gtkFontButton = cast(GtkFontButton*)obj; 1201 gtkFontButton = cast(GtkFontButton*)obj;
1154 Index: src/gtk/MessageDialog.d 1202 Index: src/gtk/MessageDialog.d
1155 =================================================================== 1203 ===================================================================
1156 --- src/gtk/MessageDialog.d (revision 843) 1204 --- src/gtk/MessageDialog.d (revision 844)
1157 +++ src/gtk/MessageDialog.d (working copy) 1205 +++ src/gtk/MessageDialog.d (working copy)
1158 @@ -162,7 +162,7 @@ 1206 @@ -162,7 +162,7 @@
1159 this.gtkMessageDialog = gtkMessageDialog; 1207 this.gtkMessageDialog = gtkMessageDialog;
1160 } 1208 }
1161 1209
1164 { 1212 {
1165 super.setStruct(obj); 1213 super.setStruct(obj);
1166 gtkMessageDialog = cast(GtkMessageDialog*)obj; 1214 gtkMessageDialog = cast(GtkMessageDialog*)obj;
1167 Index: src/gtk/TreeSelection.d 1215 Index: src/gtk/TreeSelection.d
1168 =================================================================== 1216 ===================================================================
1169 --- src/gtk/TreeSelection.d (revision 843) 1217 --- src/gtk/TreeSelection.d (revision 844)
1170 +++ src/gtk/TreeSelection.d (working copy) 1218 +++ src/gtk/TreeSelection.d (working copy)
1171 @@ -150,7 +150,7 @@ 1219 @@ -150,7 +150,7 @@
1172 this.gtkTreeSelection = gtkTreeSelection; 1220 this.gtkTreeSelection = gtkTreeSelection;
1173 } 1221 }
1174 1222
1177 { 1225 {
1178 super.setStruct(obj); 1226 super.setStruct(obj);
1179 gtkTreeSelection = cast(GtkTreeSelection*)obj; 1227 gtkTreeSelection = cast(GtkTreeSelection*)obj;
1180 Index: src/gtk/Statusbar.d 1228 Index: src/gtk/Statusbar.d
1181 =================================================================== 1229 ===================================================================
1182 --- src/gtk/Statusbar.d (revision 843) 1230 --- src/gtk/Statusbar.d (revision 844)
1183 +++ src/gtk/Statusbar.d (working copy) 1231 +++ src/gtk/Statusbar.d (working copy)
1184 @@ -135,7 +135,7 @@ 1232 @@ -135,7 +135,7 @@
1185 this.gtkStatusbar = gtkStatusbar; 1233 this.gtkStatusbar = gtkStatusbar;
1186 } 1234 }
1187 1235
1190 { 1238 {
1191 super.setStruct(obj); 1239 super.setStruct(obj);
1192 gtkStatusbar = cast(GtkStatusbar*)obj; 1240 gtkStatusbar = cast(GtkStatusbar*)obj;
1193 Index: src/gtk/Bin.d 1241 Index: src/gtk/Bin.d
1194 =================================================================== 1242 ===================================================================
1195 --- src/gtk/Bin.d (revision 843) 1243 --- src/gtk/Bin.d (revision 844)
1196 +++ src/gtk/Bin.d (working copy) 1244 +++ src/gtk/Bin.d (working copy)
1197 @@ -113,7 +113,7 @@ 1245 @@ -113,7 +113,7 @@
1198 this.gtkBin = gtkBin; 1246 this.gtkBin = gtkBin;
1199 } 1247 }
1200 1248
1203 { 1251 {
1204 super.setStruct(obj); 1252 super.setStruct(obj);
1205 gtkBin = cast(GtkBin*)obj; 1253 gtkBin = cast(GtkBin*)obj;
1206 Index: src/gtk/IMContext.d 1254 Index: src/gtk/IMContext.d
1207 =================================================================== 1255 ===================================================================
1208 --- src/gtk/IMContext.d (revision 843) 1256 --- src/gtk/IMContext.d (revision 844)
1209 +++ src/gtk/IMContext.d (working copy) 1257 +++ src/gtk/IMContext.d (working copy)
1210 @@ -173,7 +173,7 @@ 1258 @@ -173,7 +173,7 @@
1211 this.gtkIMContext = gtkIMContext; 1259 this.gtkIMContext = gtkIMContext;
1212 } 1260 }
1213 1261
1216 { 1264 {
1217 super.setStruct(obj); 1265 super.setStruct(obj);
1218 gtkIMContext = cast(GtkIMContext*)obj; 1266 gtkIMContext = cast(GtkIMContext*)obj;
1219 Index: src/gtk/RecentManager.d 1267 Index: src/gtk/RecentManager.d
1220 =================================================================== 1268 ===================================================================
1221 --- src/gtk/RecentManager.d (revision 843) 1269 --- src/gtk/RecentManager.d (revision 844)
1222 +++ src/gtk/RecentManager.d (working copy) 1270 +++ src/gtk/RecentManager.d (working copy)
1223 @@ -176,7 +176,7 @@ 1271 @@ -176,7 +176,7 @@
1224 this.gtkRecentManager = gtkRecentManager; 1272 this.gtkRecentManager = gtkRecentManager;
1225 } 1273 }
1226 1274
1229 { 1277 {
1230 super.setStruct(obj); 1278 super.setStruct(obj);
1231 gtkRecentManager = cast(GtkRecentManager*)obj; 1279 gtkRecentManager = cast(GtkRecentManager*)obj;
1232 Index: src/gtk/IconTheme.d 1280 Index: src/gtk/IconTheme.d
1233 =================================================================== 1281 ===================================================================
1234 --- src/gtk/IconTheme.d (revision 843) 1282 --- src/gtk/IconTheme.d (revision 844)
1235 +++ src/gtk/IconTheme.d (working copy) 1283 +++ src/gtk/IconTheme.d (working copy)
1236 @@ -210,7 +210,7 @@ 1284 @@ -210,7 +210,7 @@
1237 this.gtkIconTheme = gtkIconTheme; 1285 this.gtkIconTheme = gtkIconTheme;
1238 } 1286 }
1239 1287
1242 { 1290 {
1243 super.setStruct(obj); 1291 super.setStruct(obj);
1244 gtkIconTheme = cast(GtkIconTheme*)obj; 1292 gtkIconTheme = cast(GtkIconTheme*)obj;
1245 Index: src/gtk/VPaned.d 1293 Index: src/gtk/VPaned.d
1246 =================================================================== 1294 ===================================================================
1247 --- src/gtk/VPaned.d (revision 843) 1295 --- src/gtk/VPaned.d (revision 844)
1248 +++ src/gtk/VPaned.d (working copy) 1296 +++ src/gtk/VPaned.d (working copy)
1249 @@ -111,7 +111,7 @@ 1297 @@ -111,7 +111,7 @@
1250 this.gtkVPaned = gtkVPaned; 1298 this.gtkVPaned = gtkVPaned;
1251 } 1299 }
1252 1300
1255 { 1303 {
1256 super.setStruct(obj); 1304 super.setStruct(obj);
1257 gtkVPaned = cast(GtkVPaned*)obj; 1305 gtkVPaned = cast(GtkVPaned*)obj;
1258 Index: src/gtk/Viewport.d 1306 Index: src/gtk/Viewport.d
1259 =================================================================== 1307 ===================================================================
1260 --- src/gtk/Viewport.d (revision 843) 1308 --- src/gtk/Viewport.d (revision 844)
1261 +++ src/gtk/Viewport.d (working copy) 1309 +++ src/gtk/Viewport.d (working copy)
1262 @@ -123,7 +123,7 @@ 1310 @@ -123,7 +123,7 @@
1263 this.gtkViewport = gtkViewport; 1311 this.gtkViewport = gtkViewport;
1264 } 1312 }
1265 1313
1268 { 1316 {
1269 super.setStruct(obj); 1317 super.setStruct(obj);
1270 gtkViewport = cast(GtkViewport*)obj; 1318 gtkViewport = cast(GtkViewport*)obj;
1271 Index: src/gtk/InputDialog.d 1319 Index: src/gtk/InputDialog.d
1272 =================================================================== 1320 ===================================================================
1273 --- src/gtk/InputDialog.d (revision 843) 1321 --- src/gtk/InputDialog.d (revision 844)
1274 +++ src/gtk/InputDialog.d (working copy) 1322 +++ src/gtk/InputDialog.d (working copy)
1275 @@ -123,7 +123,7 @@ 1323 @@ -123,7 +123,7 @@
1276 this.gtkInputDialog = gtkInputDialog; 1324 this.gtkInputDialog = gtkInputDialog;
1277 } 1325 }
1278 1326
1281 { 1329 {
1282 super.setStruct(obj); 1330 super.setStruct(obj);
1283 gtkInputDialog = cast(GtkInputDialog*)obj; 1331 gtkInputDialog = cast(GtkInputDialog*)obj;
1284 Index: src/gtk/PrintUnixDialog.d 1332 Index: src/gtk/PrintUnixDialog.d
1285 =================================================================== 1333 ===================================================================
1286 --- src/gtk/PrintUnixDialog.d (revision 843) 1334 --- src/gtk/PrintUnixDialog.d (revision 844)
1287 +++ src/gtk/PrintUnixDialog.d (working copy) 1335 +++ src/gtk/PrintUnixDialog.d (working copy)
1288 @@ -184,7 +184,7 @@ 1336 @@ -184,7 +184,7 @@
1289 this.gtkPrintUnixDialog = gtkPrintUnixDialog; 1337 this.gtkPrintUnixDialog = gtkPrintUnixDialog;
1290 } 1338 }
1291 1339
1294 { 1342 {
1295 super.setStruct(obj); 1343 super.setStruct(obj);
1296 gtkPrintUnixDialog = cast(GtkPrintUnixDialog*)obj; 1344 gtkPrintUnixDialog = cast(GtkPrintUnixDialog*)obj;
1297 Index: src/gtk/CheckMenuItem.d 1345 Index: src/gtk/CheckMenuItem.d
1298 =================================================================== 1346 ===================================================================
1299 --- src/gtk/CheckMenuItem.d (revision 843) 1347 --- src/gtk/CheckMenuItem.d (revision 844)
1300 +++ src/gtk/CheckMenuItem.d (working copy) 1348 +++ src/gtk/CheckMenuItem.d (working copy)
1301 @@ -117,7 +117,7 @@ 1349 @@ -117,7 +117,7 @@
1302 this.gtkCheckMenuItem = gtkCheckMenuItem; 1350 this.gtkCheckMenuItem = gtkCheckMenuItem;
1303 } 1351 }
1304 1352
1307 { 1355 {
1308 super.setStruct(obj); 1356 super.setStruct(obj);
1309 gtkCheckMenuItem = cast(GtkCheckMenuItem*)obj; 1357 gtkCheckMenuItem = cast(GtkCheckMenuItem*)obj;
1310 Index: src/gtk/Ruler.d 1358 Index: src/gtk/Ruler.d
1311 =================================================================== 1359 ===================================================================
1312 --- src/gtk/Ruler.d (revision 843) 1360 --- src/gtk/Ruler.d (revision 844)
1313 +++ src/gtk/Ruler.d (working copy) 1361 +++ src/gtk/Ruler.d (working copy)
1314 @@ -124,7 +124,7 @@ 1362 @@ -124,7 +124,7 @@
1315 this.gtkRuler = gtkRuler; 1363 this.gtkRuler = gtkRuler;
1316 } 1364 }
1317 1365
1320 { 1368 {
1321 super.setStruct(obj); 1369 super.setStruct(obj);
1322 gtkRuler = cast(GtkRuler*)obj; 1370 gtkRuler = cast(GtkRuler*)obj;
1323 Index: src/gtk/RadioButton.d 1371 Index: src/gtk/RadioButton.d
1324 =================================================================== 1372 ===================================================================
1325 --- src/gtk/RadioButton.d (revision 843) 1373 --- src/gtk/RadioButton.d (revision 844)
1326 +++ src/gtk/RadioButton.d (working copy) 1374 +++ src/gtk/RadioButton.d (working copy)
1327 @@ -179,7 +179,7 @@ 1375 @@ -179,7 +179,7 @@
1328 this.gtkRadioButton = gtkRadioButton; 1376 this.gtkRadioButton = gtkRadioButton;
1329 } 1377 }
1330 1378
1333 { 1381 {
1334 super.setStruct(obj); 1382 super.setStruct(obj);
1335 gtkRadioButton = cast(GtkRadioButton*)obj; 1383 gtkRadioButton = cast(GtkRadioButton*)obj;
1336 Index: src/gtk/EntryBuffer.d 1384 Index: src/gtk/EntryBuffer.d
1337 =================================================================== 1385 ===================================================================
1338 --- src/gtk/EntryBuffer.d (revision 843) 1386 --- src/gtk/EntryBuffer.d (revision 844)
1339 +++ src/gtk/EntryBuffer.d (working copy) 1387 +++ src/gtk/EntryBuffer.d (working copy)
1340 @@ -117,7 +117,7 @@ 1388 @@ -117,7 +117,7 @@
1341 this.gtkEntryBuffer = gtkEntryBuffer; 1389 this.gtkEntryBuffer = gtkEntryBuffer;
1342 } 1390 }
1343 1391
1346 { 1394 {
1347 super.setStruct(obj); 1395 super.setStruct(obj);
1348 gtkEntryBuffer = cast(GtkEntryBuffer*)obj; 1396 gtkEntryBuffer = cast(GtkEntryBuffer*)obj;
1349 Index: src/gtk/EntryCompletion.d 1397 Index: src/gtk/EntryCompletion.d
1350 =================================================================== 1398 ===================================================================
1351 --- src/gtk/EntryCompletion.d (revision 843) 1399 --- src/gtk/EntryCompletion.d (revision 844)
1352 +++ src/gtk/EntryCompletion.d (working copy) 1400 +++ src/gtk/EntryCompletion.d (working copy)
1353 @@ -144,7 +144,7 @@ 1401 @@ -144,7 +144,7 @@
1354 this.gtkEntryCompletion = gtkEntryCompletion; 1402 this.gtkEntryCompletion = gtkEntryCompletion;
1355 } 1403 }
1356 1404
1359 { 1407 {
1360 super.setStruct(obj); 1408 super.setStruct(obj);
1361 gtkEntryCompletion = cast(GtkEntryCompletion*)obj; 1409 gtkEntryCompletion = cast(GtkEntryCompletion*)obj;
1362 Index: src/gtk/Misc.d 1410 Index: src/gtk/Misc.d
1363 =================================================================== 1411 ===================================================================
1364 --- src/gtk/Misc.d (revision 843) 1412 --- src/gtk/Misc.d (revision 844)
1365 +++ src/gtk/Misc.d (working copy) 1413 +++ src/gtk/Misc.d (working copy)
1366 @@ -113,7 +113,7 @@ 1414 @@ -113,7 +113,7 @@
1367 this.gtkMisc = gtkMisc; 1415 this.gtkMisc = gtkMisc;
1368 } 1416 }
1369 1417
1372 { 1420 {
1373 super.setStruct(obj); 1421 super.setStruct(obj);
1374 gtkMisc = cast(GtkMisc*)obj; 1422 gtkMisc = cast(GtkMisc*)obj;
1375 Index: src/gtk/ToolPalette.d 1423 Index: src/gtk/ToolPalette.d
1376 =================================================================== 1424 ===================================================================
1377 --- src/gtk/ToolPalette.d (revision 843) 1425 --- src/gtk/ToolPalette.d (revision 844)
1378 +++ src/gtk/ToolPalette.d (working copy) 1426 +++ src/gtk/ToolPalette.d (working copy)
1379 @@ -217,7 +217,7 @@ 1427 @@ -217,7 +217,7 @@
1380 this.gtkToolPalette = gtkToolPalette; 1428 this.gtkToolPalette = gtkToolPalette;
1381 } 1429 }
1382 1430
1385 { 1433 {
1386 super.setStruct(obj); 1434 super.setStruct(obj);
1387 gtkToolPalette = cast(GtkToolPalette*)obj; 1435 gtkToolPalette = cast(GtkToolPalette*)obj;
1388 Index: src/gtk/RadioAction.d 1436 Index: src/gtk/RadioAction.d
1389 =================================================================== 1437 ===================================================================
1390 --- src/gtk/RadioAction.d (revision 843) 1438 --- src/gtk/RadioAction.d (revision 844)
1391 +++ src/gtk/RadioAction.d (working copy) 1439 +++ src/gtk/RadioAction.d (working copy)
1392 @@ -115,7 +115,7 @@ 1440 @@ -115,7 +115,7 @@
1393 this.gtkRadioAction = gtkRadioAction; 1441 this.gtkRadioAction = gtkRadioAction;
1394 } 1442 }
1395 1443
1398 { 1446 {
1399 super.setStruct(obj); 1447 super.setStruct(obj);
1400 gtkRadioAction = cast(GtkRadioAction*)obj; 1448 gtkRadioAction = cast(GtkRadioAction*)obj;
1401 Index: src/gtk/FontSelectionDialog.d 1449 Index: src/gtk/FontSelectionDialog.d
1402 =================================================================== 1450 ===================================================================
1403 --- src/gtk/FontSelectionDialog.d (revision 843) 1451 --- src/gtk/FontSelectionDialog.d (revision 844)
1404 +++ src/gtk/FontSelectionDialog.d (working copy) 1452 +++ src/gtk/FontSelectionDialog.d (working copy)
1405 @@ -124,7 +124,7 @@ 1453 @@ -124,7 +124,7 @@
1406 this.gtkFontSelectionDialog = gtkFontSelectionDialog; 1454 this.gtkFontSelectionDialog = gtkFontSelectionDialog;
1407 } 1455 }
1408 1456
1411 { 1459 {
1412 super.setStruct(obj); 1460 super.setStruct(obj);
1413 gtkFontSelectionDialog = cast(GtkFontSelectionDialog*)obj; 1461 gtkFontSelectionDialog = cast(GtkFontSelectionDialog*)obj;
1414 Index: src/gtk/MenuShell.d 1462 Index: src/gtk/MenuShell.d
1415 =================================================================== 1463 ===================================================================
1416 --- src/gtk/MenuShell.d (revision 843) 1464 --- src/gtk/MenuShell.d (revision 844)
1417 +++ src/gtk/MenuShell.d (working copy) 1465 +++ src/gtk/MenuShell.d (working copy)
1418 @@ -116,7 +116,7 @@ 1466 @@ -116,7 +116,7 @@
1419 this.gtkMenuShell = gtkMenuShell; 1467 this.gtkMenuShell = gtkMenuShell;
1420 } 1468 }
1421 1469
1424 { 1472 {
1425 super.setStruct(obj); 1473 super.setStruct(obj);
1426 gtkMenuShell = cast(GtkMenuShell*)obj; 1474 gtkMenuShell = cast(GtkMenuShell*)obj;
1427 Index: src/gtk/Style.d 1475 Index: src/gtk/Style.d
1428 =================================================================== 1476 ===================================================================
1429 --- src/gtk/Style.d (revision 843) 1477 --- src/gtk/Style.d (revision 844)
1430 +++ src/gtk/Style.d (working copy) 1478 +++ src/gtk/Style.d (working copy)
1431 @@ -146,7 +146,7 @@ 1479 @@ -146,7 +146,7 @@
1432 this.gtkStyle = gtkStyle; 1480 this.gtkStyle = gtkStyle;
1433 } 1481 }
1434 1482
1437 { 1485 {
1438 super.setStruct(obj); 1486 super.setStruct(obj);
1439 gtkStyle = cast(GtkStyle*)obj; 1487 gtkStyle = cast(GtkStyle*)obj;
1440 Index: src/gtk/HBox.d 1488 Index: src/gtk/HBox.d
1441 =================================================================== 1489 ===================================================================
1442 --- src/gtk/HBox.d (revision 843) 1490 --- src/gtk/HBox.d (revision 844)
1443 +++ src/gtk/HBox.d (working copy) 1491 +++ src/gtk/HBox.d (working copy)
1444 @@ -109,7 +109,7 @@ 1492 @@ -109,7 +109,7 @@
1445 this.gtkHBox = gtkHBox; 1493 this.gtkHBox = gtkHBox;
1446 } 1494 }
1447 1495
1450 { 1498 {
1451 super.setStruct(obj); 1499 super.setStruct(obj);
1452 gtkHBox = cast(GtkHBox*)obj; 1500 gtkHBox = cast(GtkHBox*)obj;
1453 Index: src/gtk/Image.d 1501 Index: src/gtk/Image.d
1454 =================================================================== 1502 ===================================================================
1455 --- src/gtk/Image.d (revision 843) 1503 --- src/gtk/Image.d (revision 844)
1456 +++ src/gtk/Image.d (working copy) 1504 +++ src/gtk/Image.d (working copy)
1457 @@ -241,7 +241,7 @@ 1505 @@ -241,7 +241,7 @@
1458 this.gtkImage = gtkImage; 1506 this.gtkImage = gtkImage;
1459 } 1507 }
1460 1508
1463 { 1511 {
1464 super.setStruct(obj); 1512 super.setStruct(obj);
1465 gtkImage = cast(GtkImage*)obj; 1513 gtkImage = cast(GtkImage*)obj;
1466 Index: src/gtk/Widget.d 1514 Index: src/gtk/Widget.d
1467 =================================================================== 1515 ===================================================================
1468 --- src/gtk/Widget.d (revision 843) 1516 --- src/gtk/Widget.d (revision 844)
1469 +++ src/gtk/Widget.d (working copy) 1517 +++ src/gtk/Widget.d (working copy)
1470 @@ -276,7 +276,7 @@ 1518 @@ -276,7 +276,7 @@
1471 this.gtkWidget = gtkWidget; 1519 this.gtkWidget = gtkWidget;
1472 } 1520 }
1473 1521
1476 { 1524 {
1477 super.setStruct(obj); 1525 super.setStruct(obj);
1478 gtkWidget = cast(GtkWidget*)obj; 1526 gtkWidget = cast(GtkWidget*)obj;
1479 Index: src/gtk/Invisible.d 1527 Index: src/gtk/Invisible.d
1480 =================================================================== 1528 ===================================================================
1481 --- src/gtk/Invisible.d (revision 843) 1529 --- src/gtk/Invisible.d (revision 844)
1482 +++ src/gtk/Invisible.d (working copy) 1530 +++ src/gtk/Invisible.d (working copy)
1483 @@ -113,7 +113,7 @@ 1531 @@ -113,7 +113,7 @@
1484 this.gtkInvisible = gtkInvisible; 1532 this.gtkInvisible = gtkInvisible;
1485 } 1533 }
1486 1534
1489 { 1537 {
1490 super.setStruct(obj); 1538 super.setStruct(obj);
1491 gtkInvisible = cast(GtkInvisible*)obj; 1539 gtkInvisible = cast(GtkInvisible*)obj;
1492 Index: src/gtk/IMMulticontext.d 1540 Index: src/gtk/IMMulticontext.d
1493 =================================================================== 1541 ===================================================================
1494 --- src/gtk/IMMulticontext.d (revision 843) 1542 --- src/gtk/IMMulticontext.d (revision 844)
1495 +++ src/gtk/IMMulticontext.d (working copy) 1543 +++ src/gtk/IMMulticontext.d (working copy)
1496 @@ -113,7 +113,7 @@ 1544 @@ -113,7 +113,7 @@
1497 this.gtkIMMulticontext = gtkIMMulticontext; 1545 this.gtkIMMulticontext = gtkIMMulticontext;
1498 } 1546 }
1499 1547
1502 { 1550 {
1503 super.setStruct(obj); 1551 super.setStruct(obj);
1504 gtkIMMulticontext = cast(GtkIMMulticontext*)obj; 1552 gtkIMMulticontext = cast(GtkIMMulticontext*)obj;
1505 Index: src/gtk/TreeModelFilter.d 1553 Index: src/gtk/TreeModelFilter.d
1506 =================================================================== 1554 ===================================================================
1507 --- src/gtk/TreeModelFilter.d (revision 843) 1555 --- src/gtk/TreeModelFilter.d (revision 844)
1508 +++ src/gtk/TreeModelFilter.d (working copy) 1556 +++ src/gtk/TreeModelFilter.d (working copy)
1509 @@ -137,7 +137,7 @@ 1557 @@ -137,7 +137,7 @@
1510 this.gtkTreeModelFilter = gtkTreeModelFilter; 1558 this.gtkTreeModelFilter = gtkTreeModelFilter;
1511 } 1559 }
1512 1560
1515 { 1563 {
1516 super.setStruct(obj); 1564 super.setStruct(obj);
1517 gtkTreeModelFilter = cast(GtkTreeModelFilter*)obj; 1565 gtkTreeModelFilter = cast(GtkTreeModelFilter*)obj;
1518 Index: src/gtk/GammaCurve.d 1566 Index: src/gtk/GammaCurve.d
1519 =================================================================== 1567 ===================================================================
1520 --- src/gtk/GammaCurve.d (revision 843) 1568 --- src/gtk/GammaCurve.d (revision 844)
1521 +++ src/gtk/GammaCurve.d (working copy) 1569 +++ src/gtk/GammaCurve.d (working copy)
1522 @@ -114,7 +114,7 @@ 1570 @@ -114,7 +114,7 @@
1523 this.gtkGammaCurve = gtkGammaCurve; 1571 this.gtkGammaCurve = gtkGammaCurve;
1524 } 1572 }
1525 1573
1528 { 1576 {
1529 super.setStruct(obj); 1577 super.setStruct(obj);
1530 gtkGammaCurve = cast(GtkGammaCurve*)obj; 1578 gtkGammaCurve = cast(GtkGammaCurve*)obj;
1531 Index: src/gtk/PrintJob.d 1579 Index: src/gtk/PrintJob.d
1532 =================================================================== 1580 ===================================================================
1533 --- src/gtk/PrintJob.d (revision 843) 1581 --- src/gtk/PrintJob.d (revision 844)
1534 +++ src/gtk/PrintJob.d (working copy) 1582 +++ src/gtk/PrintJob.d (working copy)
1535 @@ -134,7 +134,7 @@ 1583 @@ -134,7 +134,7 @@
1536 this.gtkPrintJob = gtkPrintJob; 1584 this.gtkPrintJob = gtkPrintJob;
1537 } 1585 }
1538 1586
1541 { 1589 {
1542 super.setStruct(obj); 1590 super.setStruct(obj);
1543 gtkPrintJob = cast(GtkPrintJob*)obj; 1591 gtkPrintJob = cast(GtkPrintJob*)obj;
1544 Index: src/gtk/ProgressBar.d 1592 Index: src/gtk/ProgressBar.d
1545 =================================================================== 1593 ===================================================================
1546 --- src/gtk/ProgressBar.d (revision 843) 1594 --- src/gtk/ProgressBar.d (revision 844)
1547 +++ src/gtk/ProgressBar.d (working copy) 1595 +++ src/gtk/ProgressBar.d (working copy)
1548 @@ -140,7 +140,7 @@ 1596 @@ -140,7 +140,7 @@
1549 this.gtkProgressBar = gtkProgressBar; 1597 this.gtkProgressBar = gtkProgressBar;
1550 } 1598 }
1551 1599
1554 { 1602 {
1555 super.setStruct(obj); 1603 super.setStruct(obj);
1556 gtkProgressBar = cast(GtkProgressBar*)obj; 1604 gtkProgressBar = cast(GtkProgressBar*)obj;
1557 Index: src/gtk/Tooltip.d 1605 Index: src/gtk/Tooltip.d
1558 =================================================================== 1606 ===================================================================
1559 --- src/gtk/Tooltip.d (revision 843) 1607 --- src/gtk/Tooltip.d (revision 844)
1560 +++ src/gtk/Tooltip.d (working copy) 1608 +++ src/gtk/Tooltip.d (working copy)
1561 @@ -155,7 +155,7 @@ 1609 @@ -155,7 +155,7 @@
1562 this.gtkTooltip = gtkTooltip; 1610 this.gtkTooltip = gtkTooltip;
1563 } 1611 }
1564 1612
1567 { 1615 {
1568 super.setStruct(obj); 1616 super.setStruct(obj);
1569 gtkTooltip = cast(GtkTooltip*)obj; 1617 gtkTooltip = cast(GtkTooltip*)obj;
1570 Index: src/gtk/AboutDialog.d 1618 Index: src/gtk/AboutDialog.d
1571 =================================================================== 1619 ===================================================================
1572 --- src/gtk/AboutDialog.d (revision 843) 1620 --- src/gtk/AboutDialog.d (revision 844)
1573 +++ src/gtk/AboutDialog.d (working copy) 1621 +++ src/gtk/AboutDialog.d (working copy)
1574 @@ -162,7 +162,7 @@ 1622 @@ -162,7 +162,7 @@
1575 this.gtkAboutDialog = gtkAboutDialog; 1623 this.gtkAboutDialog = gtkAboutDialog;
1576 } 1624 }
1577 1625
1580 { 1628 {
1581 super.setStruct(obj); 1629 super.setStruct(obj);
1582 gtkAboutDialog = cast(GtkAboutDialog*)obj; 1630 gtkAboutDialog = cast(GtkAboutDialog*)obj;
1583 Index: src/gtk/StatusIcon.d 1631 Index: src/gtk/StatusIcon.d
1584 =================================================================== 1632 ===================================================================
1585 --- src/gtk/StatusIcon.d (revision 843) 1633 --- src/gtk/StatusIcon.d (revision 844)
1586 +++ src/gtk/StatusIcon.d (working copy) 1634 +++ src/gtk/StatusIcon.d (working copy)
1587 @@ -146,7 +146,7 @@ 1635 @@ -146,7 +146,7 @@
1588 this.gtkStatusIcon = gtkStatusIcon; 1636 this.gtkStatusIcon = gtkStatusIcon;
1589 } 1637 }
1590 1638
1593 { 1641 {
1594 super.setStruct(obj); 1642 super.setStruct(obj);
1595 gtkStatusIcon = cast(GtkStatusIcon*)obj; 1643 gtkStatusIcon = cast(GtkStatusIcon*)obj;
1596 Index: src/gtk/HButtonBox.d 1644 Index: src/gtk/HButtonBox.d
1597 =================================================================== 1645 ===================================================================
1598 --- src/gtk/HButtonBox.d (revision 843) 1646 --- src/gtk/HButtonBox.d (revision 844)
1599 +++ src/gtk/HButtonBox.d (working copy) 1647 +++ src/gtk/HButtonBox.d (working copy)
1600 @@ -120,7 +120,7 @@ 1648 @@ -120,7 +120,7 @@
1601 this.gtkHButtonBox = gtkHButtonBox; 1649 this.gtkHButtonBox = gtkHButtonBox;
1602 } 1650 }
1603 1651
1606 { 1654 {
1607 super.setStruct(obj); 1655 super.setStruct(obj);
1608 gtkHButtonBox = cast(GtkHButtonBox*)obj; 1656 gtkHButtonBox = cast(GtkHButtonBox*)obj;
1609 Index: src/gtk/Settings.d 1657 Index: src/gtk/Settings.d
1610 =================================================================== 1658 ===================================================================
1611 --- src/gtk/Settings.d (revision 843) 1659 --- src/gtk/Settings.d (revision 844)
1612 +++ src/gtk/Settings.d (working copy) 1660 +++ src/gtk/Settings.d (working copy)
1613 @@ -145,7 +145,7 @@ 1661 @@ -145,7 +145,7 @@
1614 this.gtkSettings = gtkSettings; 1662 this.gtkSettings = gtkSettings;
1615 } 1663 }
1616 1664
1619 { 1667 {
1620 super.setStruct(obj); 1668 super.setStruct(obj);
1621 gtkSettings = cast(GtkSettings*)obj; 1669 gtkSettings = cast(GtkSettings*)obj;
1622 Index: src/gtk/Separator.d 1670 Index: src/gtk/Separator.d
1623 =================================================================== 1671 ===================================================================
1624 --- src/gtk/Separator.d (revision 843) 1672 --- src/gtk/Separator.d (revision 844)
1625 +++ src/gtk/Separator.d (working copy) 1673 +++ src/gtk/Separator.d (working copy)
1626 @@ -112,7 +112,7 @@ 1674 @@ -112,7 +112,7 @@
1627 this.gtkSeparator = gtkSeparator; 1675 this.gtkSeparator = gtkSeparator;
1628 } 1676 }
1629 1677
1632 { 1680 {
1633 super.setStruct(obj); 1681 super.setStruct(obj);
1634 gtkSeparator = cast(GtkSeparator*)obj; 1682 gtkSeparator = cast(GtkSeparator*)obj;
1635 Index: src/gtk/FileChooserWidget.d 1683 Index: src/gtk/FileChooserWidget.d
1636 =================================================================== 1684 ===================================================================
1637 --- src/gtk/FileChooserWidget.d (revision 843) 1685 --- src/gtk/FileChooserWidget.d (revision 844)
1638 +++ src/gtk/FileChooserWidget.d (working copy) 1686 +++ src/gtk/FileChooserWidget.d (working copy)
1639 @@ -119,7 +119,7 @@ 1687 @@ -119,7 +119,7 @@
1640 this.gtkFileChooserWidget = gtkFileChooserWidget; 1688 this.gtkFileChooserWidget = gtkFileChooserWidget;
1641 } 1689 }
1642 1690
1645 { 1693 {
1646 super.setStruct(obj); 1694 super.setStruct(obj);
1647 gtkFileChooserWidget = cast(GtkFileChooserWidget*)obj; 1695 gtkFileChooserWidget = cast(GtkFileChooserWidget*)obj;
1648 Index: src/gtk/AccelLabel.d 1696 Index: src/gtk/AccelLabel.d
1649 =================================================================== 1697 ===================================================================
1650 --- src/gtk/AccelLabel.d (revision 843) 1698 --- src/gtk/AccelLabel.d (revision 844)
1651 +++ src/gtk/AccelLabel.d (working copy) 1699 +++ src/gtk/AccelLabel.d (working copy)
1652 @@ -173,7 +173,7 @@ 1700 @@ -173,7 +173,7 @@
1653 this.gtkAccelLabel = gtkAccelLabel; 1701 this.gtkAccelLabel = gtkAccelLabel;
1654 } 1702 }
1655 1703
1658 { 1706 {
1659 super.setStruct(obj); 1707 super.setStruct(obj);
1660 gtkAccelLabel = cast(GtkAccelLabel*)obj; 1708 gtkAccelLabel = cast(GtkAccelLabel*)obj;
1661 Index: src/gtk/Plug.d 1709 Index: src/gtk/Plug.d
1662 =================================================================== 1710 ===================================================================
1663 --- src/gtk/Plug.d (revision 843) 1711 --- src/gtk/Plug.d (revision 844)
1664 +++ src/gtk/Plug.d (working copy) 1712 +++ src/gtk/Plug.d (working copy)
1665 @@ -121,7 +121,7 @@ 1713 @@ -121,7 +121,7 @@
1666 this.gtkPlug = gtkPlug; 1714 this.gtkPlug = gtkPlug;
1667 } 1715 }
1668 1716
1671 { 1719 {
1672 super.setStruct(obj); 1720 super.setStruct(obj);
1673 gtkPlug = cast(GtkPlug*)obj; 1721 gtkPlug = cast(GtkPlug*)obj;
1674 Index: src/gtk/PrintSettings.d 1722 Index: src/gtk/PrintSettings.d
1675 =================================================================== 1723 ===================================================================
1676 --- src/gtk/PrintSettings.d (revision 843) 1724 --- src/gtk/PrintSettings.d (revision 844)
1677 +++ src/gtk/PrintSettings.d (working copy) 1725 +++ src/gtk/PrintSettings.d (working copy)
1678 @@ -128,7 +128,7 @@ 1726 @@ -128,7 +128,7 @@
1679 this.gtkPrintSettings = gtkPrintSettings; 1727 this.gtkPrintSettings = gtkPrintSettings;
1680 } 1728 }
1681 1729
1684 { 1732 {
1685 super.setStruct(obj); 1733 super.setStruct(obj);
1686 gtkPrintSettings = cast(GtkPrintSettings*)obj; 1734 gtkPrintSettings = cast(GtkPrintSettings*)obj;
1687 Index: src/gtk/Adjustment.d 1735 Index: src/gtk/Adjustment.d
1688 =================================================================== 1736 ===================================================================
1689 --- src/gtk/Adjustment.d (revision 843) 1737 --- src/gtk/Adjustment.d (revision 844)
1690 +++ src/gtk/Adjustment.d (working copy) 1738 +++ src/gtk/Adjustment.d (working copy)
1691 @@ -121,7 +121,7 @@ 1739 @@ -121,7 +121,7 @@
1692 this.gtkAdjustment = gtkAdjustment; 1740 this.gtkAdjustment = gtkAdjustment;
1693 } 1741 }
1694 1742
1697 { 1745 {
1698 super.setStruct(obj); 1746 super.setStruct(obj);
1699 gtkAdjustment = cast(GtkAdjustment*)obj; 1747 gtkAdjustment = cast(GtkAdjustment*)obj;
1700 Index: src/gtk/RecentChooserDialog.d 1748 Index: src/gtk/RecentChooserDialog.d
1701 =================================================================== 1749 ===================================================================
1702 --- src/gtk/RecentChooserDialog.d (revision 843) 1750 --- src/gtk/RecentChooserDialog.d (revision 844)
1703 +++ src/gtk/RecentChooserDialog.d (working copy) 1751 +++ src/gtk/RecentChooserDialog.d (working copy)
1704 @@ -148,7 +148,7 @@ 1752 @@ -148,7 +148,7 @@
1705 this.gtkRecentChooserDialog = gtkRecentChooserDialog; 1753 this.gtkRecentChooserDialog = gtkRecentChooserDialog;
1706 } 1754 }
1707 1755
1710 { 1758 {
1711 super.setStruct(obj); 1759 super.setStruct(obj);
1712 gtkRecentChooserDialog = cast(GtkRecentChooserDialog*)obj; 1760 gtkRecentChooserDialog = cast(GtkRecentChooserDialog*)obj;
1713 Index: src/gtk/Scrollbar.d 1761 Index: src/gtk/Scrollbar.d
1714 =================================================================== 1762 ===================================================================
1715 --- src/gtk/Scrollbar.d (revision 843) 1763 --- src/gtk/Scrollbar.d (revision 844)
1716 +++ src/gtk/Scrollbar.d (working copy) 1764 +++ src/gtk/Scrollbar.d (working copy)
1717 @@ -115,7 +115,7 @@ 1765 @@ -115,7 +115,7 @@
1718 this.gtkScrollbar = gtkScrollbar; 1766 this.gtkScrollbar = gtkScrollbar;
1719 } 1767 }
1720 1768
1723 { 1771 {
1724 super.setStruct(obj); 1772 super.setStruct(obj);
1725 gtkScrollbar = cast(GtkScrollbar*)obj; 1773 gtkScrollbar = cast(GtkScrollbar*)obj;
1726 Index: src/gtk/FileSelection.d 1774 Index: src/gtk/FileSelection.d
1727 =================================================================== 1775 ===================================================================
1728 --- src/gtk/FileSelection.d (revision 843) 1776 --- src/gtk/FileSelection.d (revision 844)
1729 +++ src/gtk/FileSelection.d (working copy) 1777 +++ src/gtk/FileSelection.d (working copy)
1730 @@ -176,7 +176,7 @@ 1778 @@ -176,7 +176,7 @@
1731 this.gtkFileSelection = gtkFileSelection; 1779 this.gtkFileSelection = gtkFileSelection;
1732 } 1780 }
1733 1781
1736 { 1784 {
1737 super.setStruct(obj); 1785 super.setStruct(obj);
1738 gtkFileSelection = cast(GtkFileSelection*)obj; 1786 gtkFileSelection = cast(GtkFileSelection*)obj;
1739 Index: src/gtk/Scale.d 1787 Index: src/gtk/Scale.d
1740 =================================================================== 1788 ===================================================================
1741 --- src/gtk/Scale.d (revision 843) 1789 --- src/gtk/Scale.d (revision 844)
1742 +++ src/gtk/Scale.d (working copy) 1790 +++ src/gtk/Scale.d (working copy)
1743 @@ -128,7 +128,7 @@ 1791 @@ -128,7 +128,7 @@
1744 this.gtkScale = gtkScale; 1792 this.gtkScale = gtkScale;
1745 } 1793 }
1746 1794
1749 { 1797 {
1750 super.setStruct(obj); 1798 super.setStruct(obj);
1751 gtkScale = cast(GtkScale*)obj; 1799 gtkScale = cast(GtkScale*)obj;
1752 Index: src/gtk/Table.d 1800 Index: src/gtk/Table.d
1753 =================================================================== 1801 ===================================================================
1754 --- src/gtk/Table.d (revision 843) 1802 --- src/gtk/Table.d (revision 844)
1755 +++ src/gtk/Table.d (working copy) 1803 +++ src/gtk/Table.d (working copy)
1756 @@ -122,7 +122,7 @@ 1804 @@ -122,7 +122,7 @@
1757 this.gtkTable = gtkTable; 1805 this.gtkTable = gtkTable;
1758 } 1806 }
1759 1807
1762 { 1810 {
1763 super.setStruct(obj); 1811 super.setStruct(obj);
1764 gtkTable = cast(GtkTable*)obj; 1812 gtkTable = cast(GtkTable*)obj;
1765 Index: src/gtk/RadioToolButton.d 1813 Index: src/gtk/RadioToolButton.d
1766 =================================================================== 1814 ===================================================================
1767 --- src/gtk/RadioToolButton.d (revision 843) 1815 --- src/gtk/RadioToolButton.d (revision 844)
1768 +++ src/gtk/RadioToolButton.d (working copy) 1816 +++ src/gtk/RadioToolButton.d (working copy)
1769 @@ -124,7 +124,7 @@ 1817 @@ -124,7 +124,7 @@
1770 this.gtkRadioToolButton = gtkRadioToolButton; 1818 this.gtkRadioToolButton = gtkRadioToolButton;
1771 } 1819 }
1772 1820
1775 { 1823 {
1776 super.setStruct(obj); 1824 super.setStruct(obj);
1777 gtkRadioToolButton = cast(GtkRadioToolButton*)obj; 1825 gtkRadioToolButton = cast(GtkRadioToolButton*)obj;
1778 Index: src/gtk/Frame.d 1826 Index: src/gtk/Frame.d
1779 =================================================================== 1827 ===================================================================
1780 --- src/gtk/Frame.d (revision 843) 1828 --- src/gtk/Frame.d (revision 844)
1781 +++ src/gtk/Frame.d (working copy) 1829 +++ src/gtk/Frame.d (working copy)
1782 @@ -138,7 +138,7 @@ 1830 @@ -138,7 +138,7 @@
1783 this.gtkFrame = gtkFrame; 1831 this.gtkFrame = gtkFrame;
1784 } 1832 }
1785 1833
1788 { 1836 {
1789 super.setStruct(obj); 1837 super.setStruct(obj);
1790 gtkFrame = cast(GtkFrame*)obj; 1838 gtkFrame = cast(GtkFrame*)obj;
1791 Index: src/gtk/ActionGroup.d 1839 Index: src/gtk/ActionGroup.d
1792 =================================================================== 1840 ===================================================================
1793 --- src/gtk/ActionGroup.d (revision 843) 1841 --- src/gtk/ActionGroup.d (revision 844)
1794 +++ src/gtk/ActionGroup.d (working copy) 1842 +++ src/gtk/ActionGroup.d (working copy)
1795 @@ -170,7 +170,7 @@ 1843 @@ -170,7 +170,7 @@
1796 this.gtkActionGroup = gtkActionGroup; 1844 this.gtkActionGroup = gtkActionGroup;
1797 } 1845 }
1798 1846
1801 { 1849 {
1802 super.setStruct(obj); 1850 super.setStruct(obj);
1803 gtkActionGroup = cast(GtkActionGroup*)obj; 1851 gtkActionGroup = cast(GtkActionGroup*)obj;
1804 Index: src/gtk/PageSetup.d 1852 Index: src/gtk/PageSetup.d
1805 =================================================================== 1853 ===================================================================
1806 --- src/gtk/PageSetup.d (revision 843) 1854 --- src/gtk/PageSetup.d (revision 844)
1807 +++ src/gtk/PageSetup.d (working copy) 1855 +++ src/gtk/PageSetup.d (working copy)
1808 @@ -162,7 +162,7 @@ 1856 @@ -162,7 +162,7 @@
1809 this.gtkPageSetup = gtkPageSetup; 1857 this.gtkPageSetup = gtkPageSetup;
1810 } 1858 }
1811 1859
1814 { 1862 {
1815 super.setStruct(obj); 1863 super.setStruct(obj);
1816 gtkPageSetup = cast(GtkPageSetup*)obj; 1864 gtkPageSetup = cast(GtkPageSetup*)obj;
1817 Index: src/gtk/MenuToolButton.d 1865 Index: src/gtk/MenuToolButton.d
1818 =================================================================== 1866 ===================================================================
1819 --- src/gtk/MenuToolButton.d (revision 843) 1867 --- src/gtk/MenuToolButton.d (revision 844)
1820 +++ src/gtk/MenuToolButton.d (working copy) 1868 +++ src/gtk/MenuToolButton.d (working copy)
1821 @@ -129,7 +129,7 @@ 1869 @@ -129,7 +129,7 @@
1822 this.gtkMenuToolButton = gtkMenuToolButton; 1870 this.gtkMenuToolButton = gtkMenuToolButton;
1823 } 1871 }
1824 1872
1827 { 1875 {
1828 super.setStruct(obj); 1876 super.setStruct(obj);
1829 gtkMenuToolButton = cast(GtkMenuToolButton*)obj; 1877 gtkMenuToolButton = cast(GtkMenuToolButton*)obj;
1830 Index: src/gtk/Item.d 1878 Index: src/gtk/Item.d
1831 =================================================================== 1879 ===================================================================
1832 --- src/gtk/Item.d (revision 843) 1880 --- src/gtk/Item.d (revision 844)
1833 +++ src/gtk/Item.d (working copy) 1881 +++ src/gtk/Item.d (working copy)
1834 @@ -109,7 +109,7 @@ 1882 @@ -109,7 +109,7 @@
1835 this.gtkItem = gtkItem; 1883 this.gtkItem = gtkItem;
1836 } 1884 }
1837 1885
1840 { 1888 {
1841 super.setStruct(obj); 1889 super.setStruct(obj);
1842 gtkItem = cast(GtkItem*)obj; 1890 gtkItem = cast(GtkItem*)obj;
1843 Index: src/gtk/HRuler.d 1891 Index: src/gtk/HRuler.d
1844 =================================================================== 1892 ===================================================================
1845 --- src/gtk/HRuler.d (revision 843) 1893 --- src/gtk/HRuler.d (revision 844)
1846 +++ src/gtk/HRuler.d (working copy) 1894 +++ src/gtk/HRuler.d (working copy)
1847 @@ -119,7 +119,7 @@ 1895 @@ -119,7 +119,7 @@
1848 this.gtkHRuler = gtkHRuler; 1896 this.gtkHRuler = gtkHRuler;
1849 } 1897 }
1850 1898
1853 { 1901 {
1854 super.setStruct(obj); 1902 super.setStruct(obj);
1855 gtkHRuler = cast(GtkHRuler*)obj; 1903 gtkHRuler = cast(GtkHRuler*)obj;
1856 Index: src/gtk/Progress.d 1904 Index: src/gtk/Progress.d
1857 =================================================================== 1905 ===================================================================
1858 --- src/gtk/Progress.d (revision 843) 1906 --- src/gtk/Progress.d (revision 844)
1859 +++ src/gtk/Progress.d (working copy) 1907 +++ src/gtk/Progress.d (working copy)
1860 @@ -113,7 +113,7 @@ 1908 @@ -113,7 +113,7 @@
1861 this.gtkProgress = gtkProgress; 1909 this.gtkProgress = gtkProgress;
1862 } 1910 }
1863 1911
1866 { 1914 {
1867 super.setStruct(obj); 1915 super.setStruct(obj);
1868 gtkProgress = cast(GtkProgress*)obj; 1916 gtkProgress = cast(GtkProgress*)obj;
1869 Index: src/gtk/ComboBox.d 1917 Index: src/gtk/ComboBox.d
1870 =================================================================== 1918 ===================================================================
1871 --- src/gtk/ComboBox.d (revision 843) 1919 --- src/gtk/ComboBox.d (revision 844)
1872 +++ src/gtk/ComboBox.d (working copy) 1920 +++ src/gtk/ComboBox.d (working copy)
1873 @@ -152,7 +152,7 @@ 1921 @@ -152,7 +152,7 @@
1874 this.gtkComboBox = gtkComboBox; 1922 this.gtkComboBox = gtkComboBox;
1875 } 1923 }
1876 1924
1879 { 1927 {
1880 super.setStruct(obj); 1928 super.setStruct(obj);
1881 gtkComboBox = cast(GtkComboBox*)obj; 1929 gtkComboBox = cast(GtkComboBox*)obj;
1882 Index: src/gtk/Calendar.d 1930 Index: src/gtk/Calendar.d
1883 =================================================================== 1931 ===================================================================
1884 --- src/gtk/Calendar.d (revision 843) 1932 --- src/gtk/Calendar.d (revision 844)
1885 +++ src/gtk/Calendar.d (working copy) 1933 +++ src/gtk/Calendar.d (working copy)
1886 @@ -119,7 +119,7 @@ 1934 @@ -119,7 +119,7 @@
1887 this.gtkCalendar = gtkCalendar; 1935 this.gtkCalendar = gtkCalendar;
1888 } 1936 }
1889 1937
1892 { 1940 {
1893 super.setStruct(obj); 1941 super.setStruct(obj);
1894 gtkCalendar = cast(GtkCalendar*)obj; 1942 gtkCalendar = cast(GtkCalendar*)obj;
1895 Index: src/gtk/ToolButton.d 1943 Index: src/gtk/ToolButton.d
1896 =================================================================== 1944 ===================================================================
1897 --- src/gtk/ToolButton.d (revision 843) 1945 --- src/gtk/ToolButton.d (revision 844)
1898 +++ src/gtk/ToolButton.d (working copy) 1946 +++ src/gtk/ToolButton.d (working copy)
1899 @@ -129,7 +129,7 @@ 1947 @@ -129,7 +129,7 @@
1900 this.gtkToolButton = gtkToolButton; 1948 this.gtkToolButton = gtkToolButton;
1901 } 1949 }
1902 1950
1905 { 1953 {
1906 super.setStruct(obj); 1954 super.setStruct(obj);
1907 gtkToolButton = cast(GtkToolButton*)obj; 1955 gtkToolButton = cast(GtkToolButton*)obj;
1908 Index: src/gtk/ObjectGtk.d 1956 Index: src/gtk/ObjectGtk.d
1909 =================================================================== 1957 ===================================================================
1910 --- src/gtk/ObjectGtk.d (revision 843) 1958 --- src/gtk/ObjectGtk.d (revision 844)
1911 +++ src/gtk/ObjectGtk.d (working copy) 1959 +++ src/gtk/ObjectGtk.d (working copy)
1912 @@ -170,7 +170,7 @@ 1960 @@ -170,7 +170,7 @@
1913 this.gtkObject = gtkObject; 1961 this.gtkObject = gtkObject;
1914 } 1962 }
1915 1963
1918 { 1966 {
1919 super.setStruct(obj); 1967 super.setStruct(obj);
1920 gtkObject = cast(GtkObject*)obj; 1968 gtkObject = cast(GtkObject*)obj;
1921 Index: src/gtk/TextBuffer.d 1969 Index: src/gtk/TextBuffer.d
1922 =================================================================== 1970 ===================================================================
1923 --- src/gtk/TextBuffer.d (revision 843) 1971 --- src/gtk/TextBuffer.d (revision 844)
1924 +++ src/gtk/TextBuffer.d (working copy) 1972 +++ src/gtk/TextBuffer.d (working copy)
1925 @@ -177,7 +177,7 @@ 1973 @@ -177,7 +177,7 @@
1926 this.gtkTextBuffer = gtkTextBuffer; 1974 this.gtkTextBuffer = gtkTextBuffer;
1927 } 1975 }
1928 1976
1931 { 1979 {
1932 super.setStruct(obj); 1980 super.setStruct(obj);
1933 gtkTextBuffer = cast(GtkTextBuffer*)obj; 1981 gtkTextBuffer = cast(GtkTextBuffer*)obj;
1934 Index: src/gtk/Label.d 1982 Index: src/gtk/Label.d
1935 =================================================================== 1983 ===================================================================
1936 --- src/gtk/Label.d (revision 843) 1984 --- src/gtk/Label.d (revision 844)
1937 +++ src/gtk/Label.d (working copy) 1985 +++ src/gtk/Label.d (working copy)
1938 @@ -236,7 +236,7 @@ 1986 @@ -236,7 +236,7 @@
1939 this.gtkLabel = gtkLabel; 1987 this.gtkLabel = gtkLabel;
1940 } 1988 }
1941 1989
1944 { 1992 {
1945 super.setStruct(obj); 1993 super.setStruct(obj);
1946 gtkLabel = cast(GtkLabel*)obj; 1994 gtkLabel = cast(GtkLabel*)obj;
1947 Index: src/gtk/Notebook.d 1995 Index: src/gtk/Notebook.d
1948 =================================================================== 1996 ===================================================================
1949 --- src/gtk/Notebook.d (revision 843) 1997 --- src/gtk/Notebook.d (revision 844)
1950 +++ src/gtk/Notebook.d (working copy) 1998 +++ src/gtk/Notebook.d (working copy)
1951 @@ -158,7 +158,7 @@ 1999 @@ -158,7 +158,7 @@
1952 this.gtkNotebook = gtkNotebook; 2000 this.gtkNotebook = gtkNotebook;
1953 } 2001 }
1954 2002
1957 { 2005 {
1958 super.setStruct(obj); 2006 super.setStruct(obj);
1959 gtkNotebook = cast(GtkNotebook*)obj; 2007 gtkNotebook = cast(GtkNotebook*)obj;
1960 Index: src/gtk/MountOperation.d 2008 Index: src/gtk/MountOperation.d
1961 =================================================================== 2009 ===================================================================
1962 --- src/gtk/MountOperation.d (revision 843) 2010 --- src/gtk/MountOperation.d (revision 844)
1963 +++ src/gtk/MountOperation.d (working copy) 2011 +++ src/gtk/MountOperation.d (working copy)
1964 @@ -131,7 +131,7 @@ 2012 @@ -131,7 +131,7 @@
1965 this.gtkMountOperation = gtkMountOperation; 2013 this.gtkMountOperation = gtkMountOperation;
1966 } 2014 }
1967 2015
1970 { 2018 {
1971 super.setStruct(obj); 2019 super.setStruct(obj);
1972 gtkMountOperation = cast(GtkMountOperation*)obj; 2020 gtkMountOperation = cast(GtkMountOperation*)obj;
1973 Index: src/gtk/CellRendererPixbuf.d 2021 Index: src/gtk/CellRendererPixbuf.d
1974 =================================================================== 2022 ===================================================================
1975 --- src/gtk/CellRendererPixbuf.d (revision 843) 2023 --- src/gtk/CellRendererPixbuf.d (revision 844)
1976 +++ src/gtk/CellRendererPixbuf.d (working copy) 2024 +++ src/gtk/CellRendererPixbuf.d (working copy)
1977 @@ -122,7 +122,7 @@ 2025 @@ -122,7 +122,7 @@
1978 this.gtkCellRendererPixbuf = gtkCellRendererPixbuf; 2026 this.gtkCellRendererPixbuf = gtkCellRendererPixbuf;
1979 } 2027 }
1980 2028
1983 { 2031 {
1984 super.setStruct(obj); 2032 super.setStruct(obj);
1985 gtkCellRendererPixbuf = cast(GtkCellRendererPixbuf*)obj; 2033 gtkCellRendererPixbuf = cast(GtkCellRendererPixbuf*)obj;
1986 Index: src/gtk/ColorSelection.d 2034 Index: src/gtk/ColorSelection.d
1987 =================================================================== 2035 ===================================================================
1988 --- src/gtk/ColorSelection.d (revision 843) 2036 --- src/gtk/ColorSelection.d (revision 844)
1989 +++ src/gtk/ColorSelection.d (working copy) 2037 +++ src/gtk/ColorSelection.d (working copy)
1990 @@ -117,7 +117,7 @@ 2038 @@ -117,7 +117,7 @@
1991 this.gtkColorSelection = gtkColorSelection; 2039 this.gtkColorSelection = gtkColorSelection;
1992 } 2040 }
1993 2041
1996 { 2044 {
1997 super.setStruct(obj); 2045 super.setStruct(obj);
1998 gtkColorSelection = cast(GtkColorSelection*)obj; 2046 gtkColorSelection = cast(GtkColorSelection*)obj;
1999 Index: src/gtk/DrawingArea.d 2047 Index: src/gtk/DrawingArea.d
2000 =================================================================== 2048 ===================================================================
2001 --- src/gtk/DrawingArea.d (revision 843) 2049 --- src/gtk/DrawingArea.d (revision 844)
2002 +++ src/gtk/DrawingArea.d (working copy) 2050 +++ src/gtk/DrawingArea.d (working copy)
2003 @@ -171,7 +171,7 @@ 2051 @@ -171,7 +171,7 @@
2004 this.gtkDrawingArea = gtkDrawingArea; 2052 this.gtkDrawingArea = gtkDrawingArea;
2005 } 2053 }
2006 2054
2009 { 2057 {
2010 super.setStruct(obj); 2058 super.setStruct(obj);
2011 gtkDrawingArea = cast(GtkDrawingArea*)obj; 2059 gtkDrawingArea = cast(GtkDrawingArea*)obj;
2012 Index: src/gtk/WindowGroup.d 2060 Index: src/gtk/WindowGroup.d
2013 =================================================================== 2061 ===================================================================
2014 --- src/gtk/WindowGroup.d (revision 843) 2062 --- src/gtk/WindowGroup.d (revision 844)
2015 +++ src/gtk/WindowGroup.d (working copy) 2063 +++ src/gtk/WindowGroup.d (working copy)
2016 @@ -111,7 +111,7 @@ 2064 @@ -111,7 +111,7 @@
2017 this.gtkWindowGroup = gtkWindowGroup; 2065 this.gtkWindowGroup = gtkWindowGroup;
2018 } 2066 }
2019 2067
2022 { 2070 {
2023 super.setStruct(obj); 2071 super.setStruct(obj);
2024 gtkWindowGroup = cast(GtkWindowGroup*)obj; 2072 gtkWindowGroup = cast(GtkWindowGroup*)obj;
2025 Index: src/gtk/RcStyle.d 2073 Index: src/gtk/RcStyle.d
2026 =================================================================== 2074 ===================================================================
2027 --- src/gtk/RcStyle.d (revision 843) 2075 --- src/gtk/RcStyle.d (revision 844)
2028 +++ src/gtk/RcStyle.d (working copy) 2076 +++ src/gtk/RcStyle.d (working copy)
2029 @@ -560,7 +560,7 @@ 2077 @@ -560,7 +560,7 @@
2030 this.gtkRcStyle = gtkRcStyle; 2078 this.gtkRcStyle = gtkRcStyle;
2031 } 2079 }
2032 2080
2035 { 2083 {
2036 super.setStruct(obj); 2084 super.setStruct(obj);
2037 gtkRcStyle = cast(GtkRcStyle*)obj; 2085 gtkRcStyle = cast(GtkRcStyle*)obj;
2038 Index: src/gtk/ItemFactory.d 2086 Index: src/gtk/ItemFactory.d
2039 =================================================================== 2087 ===================================================================
2040 --- src/gtk/ItemFactory.d (revision 843) 2088 --- src/gtk/ItemFactory.d (revision 844)
2041 +++ src/gtk/ItemFactory.d (working copy) 2089 +++ src/gtk/ItemFactory.d (working copy)
2042 @@ -116,7 +116,7 @@ 2090 @@ -116,7 +116,7 @@
2043 this.gtkItemFactory = gtkItemFactory; 2091 this.gtkItemFactory = gtkItemFactory;
2044 } 2092 }
2045 2093
2048 { 2096 {
2049 super.setStruct(obj); 2097 super.setStruct(obj);
2050 gtkItemFactory = cast(GtkItemFactory*)obj; 2098 gtkItemFactory = cast(GtkItemFactory*)obj;
2051 Index: src/gtk/Paned.d 2099 Index: src/gtk/Paned.d
2052 =================================================================== 2100 ===================================================================
2053 --- src/gtk/Paned.d (revision 843) 2101 --- src/gtk/Paned.d (revision 844)
2054 +++ src/gtk/Paned.d (working copy) 2102 +++ src/gtk/Paned.d (working copy)
2055 @@ -170,7 +170,7 @@ 2103 @@ -170,7 +170,7 @@
2056 this.gtkPaned = gtkPaned; 2104 this.gtkPaned = gtkPaned;
2057 } 2105 }
2058 2106
2061 { 2109 {
2062 super.setStruct(obj); 2110 super.setStruct(obj);
2063 gtkPaned = cast(GtkPaned*)obj; 2111 gtkPaned = cast(GtkPaned*)obj;
2064 Index: src/gtk/RecentChooserMenu.d 2112 Index: src/gtk/RecentChooserMenu.d
2065 =================================================================== 2113 ===================================================================
2066 --- src/gtk/RecentChooserMenu.d (revision 843) 2114 --- src/gtk/RecentChooserMenu.d (revision 844)
2067 +++ src/gtk/RecentChooserMenu.d (working copy) 2115 +++ src/gtk/RecentChooserMenu.d (working copy)
2068 @@ -138,7 +138,7 @@ 2116 @@ -138,7 +138,7 @@
2069 this.gtkRecentChooserMenu = gtkRecentChooserMenu; 2117 this.gtkRecentChooserMenu = gtkRecentChooserMenu;
2070 } 2118 }
2071 2119
2074 { 2122 {
2075 super.setStruct(obj); 2123 super.setStruct(obj);
2076 gtkRecentChooserMenu = cast(GtkRecentChooserMenu*)obj; 2124 gtkRecentChooserMenu = cast(GtkRecentChooserMenu*)obj;
2077 Index: src/gtk/TreeModelSort.d 2125 Index: src/gtk/TreeModelSort.d
2078 =================================================================== 2126 ===================================================================
2079 --- src/gtk/TreeModelSort.d (revision 843) 2127 --- src/gtk/TreeModelSort.d (revision 844)
2080 +++ src/gtk/TreeModelSort.d (working copy) 2128 +++ src/gtk/TreeModelSort.d (working copy)
2081 @@ -264,7 +264,7 @@ 2129 @@ -264,7 +264,7 @@
2082 this.gtkTreeModelSort = gtkTreeModelSort; 2130 this.gtkTreeModelSort = gtkTreeModelSort;
2083 } 2131 }
2084 2132
2087 { 2135 {
2088 super.setStruct(obj); 2136 super.setStruct(obj);
2089 gtkTreeModelSort = cast(GtkTreeModelSort*)obj; 2137 gtkTreeModelSort = cast(GtkTreeModelSort*)obj;
2090 Index: src/gtk/Arrow.d 2138 Index: src/gtk/Arrow.d
2091 =================================================================== 2139 ===================================================================
2092 --- src/gtk/Arrow.d (revision 843) 2140 --- src/gtk/Arrow.d (revision 844)
2093 +++ src/gtk/Arrow.d (working copy) 2141 +++ src/gtk/Arrow.d (working copy)
2094 @@ -115,7 +115,7 @@ 2142 @@ -115,7 +115,7 @@
2095 this.gtkArrow = gtkArrow; 2143 this.gtkArrow = gtkArrow;
2096 } 2144 }
2097 2145
2100 { 2148 {
2101 super.setStruct(obj); 2149 super.setStruct(obj);
2102 gtkArrow = cast(GtkArrow*)obj; 2150 gtkArrow = cast(GtkArrow*)obj;
2103 Index: src/gtk/AspectFrame.d 2151 Index: src/gtk/AspectFrame.d
2104 =================================================================== 2152 ===================================================================
2105 --- src/gtk/AspectFrame.d (revision 843) 2153 --- src/gtk/AspectFrame.d (revision 844)
2106 +++ src/gtk/AspectFrame.d (working copy) 2154 +++ src/gtk/AspectFrame.d (working copy)
2107 @@ -114,7 +114,7 @@ 2155 @@ -114,7 +114,7 @@
2108 this.gtkAspectFrame = gtkAspectFrame; 2156 this.gtkAspectFrame = gtkAspectFrame;
2109 } 2157 }
2110 2158
2113 { 2161 {
2114 super.setStruct(obj); 2162 super.setStruct(obj);
2115 gtkAspectFrame = cast(GtkAspectFrame*)obj; 2163 gtkAspectFrame = cast(GtkAspectFrame*)obj;
2116 Index: src/gtk/ScrolledWindow.d 2164 Index: src/gtk/ScrolledWindow.d
2117 =================================================================== 2165 ===================================================================
2118 --- src/gtk/ScrolledWindow.d (revision 843) 2166 --- src/gtk/ScrolledWindow.d (revision 844)
2119 +++ src/gtk/ScrolledWindow.d (working copy) 2167 +++ src/gtk/ScrolledWindow.d (working copy)
2120 @@ -146,7 +146,7 @@ 2168 @@ -146,7 +146,7 @@
2121 this.gtkScrolledWindow = gtkScrolledWindow; 2169 this.gtkScrolledWindow = gtkScrolledWindow;
2122 } 2170 }
2123 2171
2126 { 2174 {
2127 super.setStruct(obj); 2175 super.setStruct(obj);
2128 gtkScrolledWindow = cast(GtkScrolledWindow*)obj; 2176 gtkScrolledWindow = cast(GtkScrolledWindow*)obj;
2129 Index: src/gtk/CellRendererSpin.d 2177 Index: src/gtk/CellRendererSpin.d
2130 =================================================================== 2178 ===================================================================
2131 --- src/gtk/CellRendererSpin.d (revision 843) 2179 --- src/gtk/CellRendererSpin.d (revision 844)
2132 +++ src/gtk/CellRendererSpin.d (working copy) 2180 +++ src/gtk/CellRendererSpin.d (working copy)
2133 @@ -119,7 +119,7 @@ 2181 @@ -119,7 +119,7 @@
2134 this.gtkCellRendererSpin = gtkCellRendererSpin; 2182 this.gtkCellRendererSpin = gtkCellRendererSpin;
2135 } 2183 }
2136 2184
2139 { 2187 {
2140 super.setStruct(obj); 2188 super.setStruct(obj);
2141 gtkCellRendererSpin = cast(GtkCellRendererSpin*)obj; 2189 gtkCellRendererSpin = cast(GtkCellRendererSpin*)obj;
2142 Index: src/gtk/SpinButton.d 2190 Index: src/gtk/SpinButton.d
2143 =================================================================== 2191 ===================================================================
2144 --- src/gtk/SpinButton.d (revision 843) 2192 --- src/gtk/SpinButton.d (revision 844)
2145 +++ src/gtk/SpinButton.d (working copy) 2193 +++ src/gtk/SpinButton.d (working copy)
2146 @@ -194,7 +194,7 @@ 2194 @@ -194,7 +194,7 @@
2147 this.gtkSpinButton = gtkSpinButton; 2195 this.gtkSpinButton = gtkSpinButton;
2148 } 2196 }
2149 2197
2152 { 2200 {
2153 super.setStruct(obj); 2201 super.setStruct(obj);
2154 gtkSpinButton = cast(GtkSpinButton*)obj; 2202 gtkSpinButton = cast(GtkSpinButton*)obj;
2155 Index: src/gtk/CellRendererSpinner.d 2203 Index: src/gtk/CellRendererSpinner.d
2156 =================================================================== 2204 ===================================================================
2157 --- src/gtk/CellRendererSpinner.d (revision 843) 2205 --- src/gtk/CellRendererSpinner.d (revision 844)
2158 +++ src/gtk/CellRendererSpinner.d (working copy) 2206 +++ src/gtk/CellRendererSpinner.d (working copy)
2159 @@ -113,7 +113,7 @@ 2207 @@ -113,7 +113,7 @@
2160 this.gtkCellRendererSpinner = gtkCellRendererSpinner; 2208 this.gtkCellRendererSpinner = gtkCellRendererSpinner;
2161 } 2209 }
2162 2210
2165 { 2213 {
2166 super.setStruct(obj); 2214 super.setStruct(obj);
2167 gtkCellRendererSpinner = cast(GtkCellRendererSpinner*)obj; 2215 gtkCellRendererSpinner = cast(GtkCellRendererSpinner*)obj;
2168 Index: src/gtk/Window.d 2216 Index: src/gtk/Window.d
2169 =================================================================== 2217 ===================================================================
2170 --- src/gtk/Window.d (revision 843) 2218 --- src/gtk/Window.d (revision 844)
2171 +++ src/gtk/Window.d (working copy) 2219 +++ src/gtk/Window.d (working copy)
2172 @@ -153,7 +153,7 @@ 2220 @@ -153,7 +153,7 @@
2173 this.gtkWindow = gtkWindow; 2221 this.gtkWindow = gtkWindow;
2174 } 2222 }
2175 2223
2178 { 2226 {
2179 super.setStruct(obj); 2227 super.setStruct(obj);
2180 gtkWindow = cast(GtkWindow*)obj; 2228 gtkWindow = cast(GtkWindow*)obj;
2181 Index: src/gtk/HSeparator.d 2229 Index: src/gtk/HSeparator.d
2182 =================================================================== 2230 ===================================================================
2183 --- src/gtk/HSeparator.d (revision 843) 2231 --- src/gtk/HSeparator.d (revision 844)
2184 +++ src/gtk/HSeparator.d (working copy) 2232 +++ src/gtk/HSeparator.d (working copy)
2185 @@ -113,7 +113,7 @@ 2233 @@ -113,7 +113,7 @@
2186 this.gtkHSeparator = gtkHSeparator; 2234 this.gtkHSeparator = gtkHSeparator;
2187 } 2235 }
2188 2236
2191 { 2239 {
2192 super.setStruct(obj); 2240 super.setStruct(obj);
2193 gtkHSeparator = cast(GtkHSeparator*)obj; 2241 gtkHSeparator = cast(GtkHSeparator*)obj;
2194 Index: src/gtk/VButtonBox.d 2242 Index: src/gtk/VButtonBox.d
2195 =================================================================== 2243 ===================================================================
2196 --- src/gtk/VButtonBox.d (revision 843) 2244 --- src/gtk/VButtonBox.d (revision 844)
2197 +++ src/gtk/VButtonBox.d (working copy) 2245 +++ src/gtk/VButtonBox.d (working copy)
2198 @@ -120,7 +120,7 @@ 2246 @@ -120,7 +120,7 @@
2199 this.gtkVButtonBox = gtkVButtonBox; 2247 this.gtkVButtonBox = gtkVButtonBox;
2200 } 2248 }
2201 2249
2204 { 2252 {
2205 super.setStruct(obj); 2253 super.setStruct(obj);
2206 gtkVButtonBox = cast(GtkVButtonBox*)obj; 2254 gtkVButtonBox = cast(GtkVButtonBox*)obj;
2207 Index: src/gtk/TreeStore.d 2255 Index: src/gtk/TreeStore.d
2208 =================================================================== 2256 ===================================================================
2209 --- src/gtk/TreeStore.d (revision 843) 2257 --- src/gtk/TreeStore.d (revision 844)
2210 +++ src/gtk/TreeStore.d (working copy) 2258 +++ src/gtk/TreeStore.d (working copy)
2211 @@ -166,7 +166,7 @@ 2259 @@ -166,7 +166,7 @@
2212 this.gtkTreeStore = gtkTreeStore; 2260 this.gtkTreeStore = gtkTreeStore;
2213 } 2261 }
2214 2262
2217 { 2265 {
2218 super.setStruct(obj); 2266 super.setStruct(obj);
2219 gtkTreeStore = cast(GtkTreeStore*)obj; 2267 gtkTreeStore = cast(GtkTreeStore*)obj;
2220 Index: src/gtk/PageSetupUnixDialog.d 2268 Index: src/gtk/PageSetupUnixDialog.d
2221 =================================================================== 2269 ===================================================================
2222 --- src/gtk/PageSetupUnixDialog.d (revision 843) 2270 --- src/gtk/PageSetupUnixDialog.d (revision 844)
2223 +++ src/gtk/PageSetupUnixDialog.d (working copy) 2271 +++ src/gtk/PageSetupUnixDialog.d (working copy)
2224 @@ -124,7 +124,7 @@ 2272 @@ -124,7 +124,7 @@
2225 this.gtkPageSetupUnixDialog = gtkPageSetupUnixDialog; 2273 this.gtkPageSetupUnixDialog = gtkPageSetupUnixDialog;
2226 } 2274 }
2227 2275
2230 { 2278 {
2231 super.setStruct(obj); 2279 super.setStruct(obj);
2232 gtkPageSetupUnixDialog = cast(GtkPageSetupUnixDialog*)obj; 2280 gtkPageSetupUnixDialog = cast(GtkPageSetupUnixDialog*)obj;
2233 Index: src/gtk/Container.d 2281 Index: src/gtk/Container.d
2234 =================================================================== 2282 ===================================================================
2235 --- src/gtk/Container.d (revision 843) 2283 --- src/gtk/Container.d (revision 844)
2236 +++ src/gtk/Container.d (working copy) 2284 +++ src/gtk/Container.d (working copy)
2237 @@ -219,7 +219,7 @@ 2285 @@ -219,7 +219,7 @@
2238 this.gtkContainer = gtkContainer; 2286 this.gtkContainer = gtkContainer;
2239 } 2287 }
2240 2288
2243 { 2291 {
2244 super.setStruct(obj); 2292 super.setStruct(obj);
2245 gtkContainer = cast(GtkContainer*)obj; 2293 gtkContainer = cast(GtkContainer*)obj;
2246 Index: src/gtk/Printer.d 2294 Index: src/gtk/Printer.d
2247 =================================================================== 2295 ===================================================================
2248 --- src/gtk/Printer.d (revision 843) 2296 --- src/gtk/Printer.d (revision 844)
2249 +++ src/gtk/Printer.d (working copy) 2297 +++ src/gtk/Printer.d (working copy)
2250 @@ -124,7 +124,7 @@ 2298 @@ -124,7 +124,7 @@
2251 this.gtkPrinter = gtkPrinter; 2299 this.gtkPrinter = gtkPrinter;
2252 } 2300 }
2253 2301
2256 { 2304 {
2257 super.setStruct(obj); 2305 super.setStruct(obj);
2258 gtkPrinter = cast(GtkPrinter*)obj; 2306 gtkPrinter = cast(GtkPrinter*)obj;
2259 Index: src/gtk/MenuItem.d 2307 Index: src/gtk/MenuItem.d
2260 =================================================================== 2308 ===================================================================
2261 --- src/gtk/MenuItem.d (revision 843) 2309 --- src/gtk/MenuItem.d (revision 844)
2262 +++ src/gtk/MenuItem.d (working copy) 2310 +++ src/gtk/MenuItem.d (working copy)
2263 @@ -144,7 +144,7 @@ 2311 @@ -144,7 +144,7 @@
2264 this.gtkMenuItem = gtkMenuItem; 2312 this.gtkMenuItem = gtkMenuItem;
2265 } 2313 }
2266 2314
2269 { 2317 {
2270 super.setStruct(obj); 2318 super.setStruct(obj);
2271 gtkMenuItem = cast(GtkMenuItem*)obj; 2319 gtkMenuItem = cast(GtkMenuItem*)obj;
2272 Index: src/gtk/CellRendererCombo.d 2320 Index: src/gtk/CellRendererCombo.d
2273 =================================================================== 2321 ===================================================================
2274 --- src/gtk/CellRendererCombo.d (revision 843) 2322 --- src/gtk/CellRendererCombo.d (revision 844)
2275 +++ src/gtk/CellRendererCombo.d (working copy) 2323 +++ src/gtk/CellRendererCombo.d (working copy)
2276 @@ -127,7 +127,7 @@ 2324 @@ -127,7 +127,7 @@
2277 this.gtkCellRendererCombo = gtkCellRendererCombo; 2325 this.gtkCellRendererCombo = gtkCellRendererCombo;
2278 } 2326 }
2279 2327
2282 { 2330 {
2283 super.setStruct(obj); 2331 super.setStruct(obj);
2284 gtkCellRendererCombo = cast(GtkCellRendererCombo*)obj; 2332 gtkCellRendererCombo = cast(GtkCellRendererCombo*)obj;
2285 Index: src/gtk/RecentFilter.d 2333 Index: src/gtk/RecentFilter.d
2286 =================================================================== 2334 ===================================================================
2287 --- src/gtk/RecentFilter.d (revision 843) 2335 --- src/gtk/RecentFilter.d (revision 844)
2288 +++ src/gtk/RecentFilter.d (working copy) 2336 +++ src/gtk/RecentFilter.d (working copy)
2289 @@ -122,7 +122,7 @@ 2337 @@ -122,7 +122,7 @@
2290 this.gtkRecentFilter = gtkRecentFilter; 2338 this.gtkRecentFilter = gtkRecentFilter;
2291 } 2339 }
2292 2340
2295 { 2343 {
2296 super.setStruct(obj); 2344 super.setStruct(obj);
2297 gtkRecentFilter = cast(GtkRecentFilter*)obj; 2345 gtkRecentFilter = cast(GtkRecentFilter*)obj;
2298 Index: src/gtk/ListStore.d 2346 Index: src/gtk/ListStore.d
2299 =================================================================== 2347 ===================================================================
2300 --- src/gtk/ListStore.d (revision 843) 2348 --- src/gtk/ListStore.d (revision 844)
2301 +++ src/gtk/ListStore.d (working copy) 2349 +++ src/gtk/ListStore.d (working copy)
2302 @@ -316,7 +316,7 @@ 2350 @@ -316,7 +316,7 @@
2303 this.gtkListStore = gtkListStore; 2351 this.gtkListStore = gtkListStore;
2304 } 2352 }
2305 2353
2308 { 2356 {
2309 super.setStruct(obj); 2357 super.setStruct(obj);
2310 gtkListStore = cast(GtkListStore*)obj; 2358 gtkListStore = cast(GtkListStore*)obj;
2311 Index: src/gtk/Socket.d 2359 Index: src/gtk/Socket.d
2312 =================================================================== 2360 ===================================================================
2313 --- src/gtk/Socket.d (revision 843) 2361 --- src/gtk/Socket.d (revision 844)
2314 +++ src/gtk/Socket.d (working copy) 2362 +++ src/gtk/Socket.d (working copy)
2315 @@ -171,7 +171,7 @@ 2363 @@ -171,7 +171,7 @@
2316 this.gtkSocket = gtkSocket; 2364 this.gtkSocket = gtkSocket;
2317 } 2365 }
2318 2366
2321 { 2369 {
2322 super.setStruct(obj); 2370 super.setStruct(obj);
2323 gtkSocket = cast(GtkSocket*)obj; 2371 gtkSocket = cast(GtkSocket*)obj;
2324 Index: src/gtk/MenuBar.d 2372 Index: src/gtk/MenuBar.d
2325 =================================================================== 2373 ===================================================================
2326 --- src/gtk/MenuBar.d (revision 843) 2374 --- src/gtk/MenuBar.d (revision 844)
2327 +++ src/gtk/MenuBar.d (working copy) 2375 +++ src/gtk/MenuBar.d (working copy)
2328 @@ -115,7 +115,7 @@ 2376 @@ -115,7 +115,7 @@
2329 this.gtkMenuBar = gtkMenuBar; 2377 this.gtkMenuBar = gtkMenuBar;
2330 } 2378 }
2331 2379
2334 { 2382 {
2335 super.setStruct(obj); 2383 super.setStruct(obj);
2336 gtkMenuBar = cast(GtkMenuBar*)obj; 2384 gtkMenuBar = cast(GtkMenuBar*)obj;
2337 Index: src/gtk/ComboBoxEntry.d 2385 Index: src/gtk/ComboBoxEntry.d
2338 =================================================================== 2386 ===================================================================
2339 --- src/gtk/ComboBoxEntry.d (revision 843) 2387 --- src/gtk/ComboBoxEntry.d (revision 844)
2340 +++ src/gtk/ComboBoxEntry.d (working copy) 2388 +++ src/gtk/ComboBoxEntry.d (working copy)
2341 @@ -137,7 +137,7 @@ 2389 @@ -137,7 +137,7 @@
2342 this.gtkComboBoxEntry = gtkComboBoxEntry; 2390 this.gtkComboBoxEntry = gtkComboBoxEntry;
2343 } 2391 }
2344 2392
2347 { 2395 {
2348 super.setStruct(obj); 2396 super.setStruct(obj);
2349 gtkComboBoxEntry = cast(GtkComboBoxEntry*)obj; 2397 gtkComboBoxEntry = cast(GtkComboBoxEntry*)obj;
2350 Index: src/gtk/HScrollbar.d 2398 Index: src/gtk/HScrollbar.d
2351 =================================================================== 2399 ===================================================================
2352 --- src/gtk/HScrollbar.d (revision 843) 2400 --- src/gtk/HScrollbar.d (revision 844)
2353 +++ src/gtk/HScrollbar.d (working copy) 2401 +++ src/gtk/HScrollbar.d (working copy)
2354 @@ -114,7 +114,7 @@ 2402 @@ -114,7 +114,7 @@
2355 this.gtkHScrollbar = gtkHScrollbar; 2403 this.gtkHScrollbar = gtkHScrollbar;
2356 } 2404 }
2357 2405
2360 { 2408 {
2361 super.setStruct(obj); 2409 super.setStruct(obj);
2362 gtkHScrollbar = cast(GtkHScrollbar*)obj; 2410 gtkHScrollbar = cast(GtkHScrollbar*)obj;
2363 Index: src/gtk/ToolItem.d 2411 Index: src/gtk/ToolItem.d
2364 =================================================================== 2412 ===================================================================
2365 --- src/gtk/ToolItem.d (revision 843) 2413 --- src/gtk/ToolItem.d (revision 844)
2366 +++ src/gtk/ToolItem.d (working copy) 2414 +++ src/gtk/ToolItem.d (working copy)
2367 @@ -133,7 +133,7 @@ 2415 @@ -133,7 +133,7 @@
2368 this.gtkToolItem = gtkToolItem; 2416 this.gtkToolItem = gtkToolItem;
2369 } 2417 }
2370 2418
2373 { 2421 {
2374 super.setStruct(obj); 2422 super.setStruct(obj);
2375 gtkToolItem = cast(GtkToolItem*)obj; 2423 gtkToolItem = cast(GtkToolItem*)obj;
2376 Index: src/gtk/HScale.d 2424 Index: src/gtk/HScale.d
2377 =================================================================== 2425 ===================================================================
2378 --- src/gtk/HScale.d (revision 843) 2426 --- src/gtk/HScale.d (revision 844)
2379 +++ src/gtk/HScale.d (working copy) 2427 +++ src/gtk/HScale.d (working copy)
2380 @@ -112,7 +112,7 @@ 2428 @@ -112,7 +112,7 @@
2381 this.gtkHScale = gtkHScale; 2429 this.gtkHScale = gtkHScale;
2382 } 2430 }
2383 2431
2386 { 2434 {
2387 super.setStruct(obj); 2435 super.setStruct(obj);
2388 gtkHScale = cast(GtkHScale*)obj; 2436 gtkHScale = cast(GtkHScale*)obj;
2389 Index: src/gtk/Dialog.d 2437 Index: src/gtk/Dialog.d
2390 =================================================================== 2438 ===================================================================
2391 --- src/gtk/Dialog.d (revision 843) 2439 --- src/gtk/Dialog.d (revision 844)
2392 +++ src/gtk/Dialog.d (working copy) 2440 +++ src/gtk/Dialog.d (working copy)
2393 @@ -252,7 +252,7 @@ 2441 @@ -252,7 +252,7 @@
2394 this.gtkDialog = gtkDialog; 2442 this.gtkDialog = gtkDialog;
2395 } 2443 }
2396 2444
2399 { 2447 {
2400 super.setStruct(obj); 2448 super.setStruct(obj);
2401 gtkDialog = cast(GtkDialog*)obj; 2449 gtkDialog = cast(GtkDialog*)obj;
2402 Index: src/gtk/Entry.d 2450 Index: src/gtk/Entry.d
2403 =================================================================== 2451 ===================================================================
2404 --- src/gtk/Entry.d (revision 843) 2452 --- src/gtk/Entry.d (revision 844)
2405 +++ src/gtk/Entry.d (working copy) 2453 +++ src/gtk/Entry.d (working copy)
2406 @@ -179,7 +179,7 @@ 2454 @@ -179,7 +179,7 @@
2407 this.gtkEntry = gtkEntry; 2455 this.gtkEntry = gtkEntry;
2408 } 2456 }
2409 2457
2412 { 2460 {
2413 super.setStruct(obj); 2461 super.setStruct(obj);
2414 gtkEntry = cast(GtkEntry*)obj; 2462 gtkEntry = cast(GtkEntry*)obj;
2415 Index: src/gtk/Toolbar.d 2463 Index: src/gtk/Toolbar.d
2416 =================================================================== 2464 ===================================================================
2417 --- src/gtk/Toolbar.d (revision 843) 2465 --- src/gtk/Toolbar.d (revision 844)
2418 +++ src/gtk/Toolbar.d (working copy) 2466 +++ src/gtk/Toolbar.d (working copy)
2419 @@ -145,7 +145,7 @@ 2467 @@ -145,7 +145,7 @@
2420 this.gtkToolbar = gtkToolbar; 2468 this.gtkToolbar = gtkToolbar;
2421 } 2469 }
2422 2470
2425 { 2473 {
2426 super.setStruct(obj); 2474 super.setStruct(obj);
2427 gtkToolbar = cast(GtkToolbar*)obj; 2475 gtkToolbar = cast(GtkToolbar*)obj;
2428 Index: src/gtk/CellRenderer.d 2476 Index: src/gtk/CellRenderer.d
2429 =================================================================== 2477 ===================================================================
2430 --- src/gtk/CellRenderer.d (revision 843) 2478 --- src/gtk/CellRenderer.d (revision 844)
2431 +++ src/gtk/CellRenderer.d (working copy) 2479 +++ src/gtk/CellRenderer.d (working copy)
2432 @@ -152,7 +152,7 @@ 2480 @@ -152,7 +152,7 @@
2433 this.gtkCellRenderer = gtkCellRenderer; 2481 this.gtkCellRenderer = gtkCellRenderer;
2434 } 2482 }
2435 2483
2438 { 2486 {
2439 super.setStruct(obj); 2487 super.setStruct(obj);
2440 gtkCellRenderer = cast(GtkCellRenderer*)obj; 2488 gtkCellRenderer = cast(GtkCellRenderer*)obj;
2441 Index: src/gtk/CellRendererToggle.d 2489 Index: src/gtk/CellRendererToggle.d
2442 =================================================================== 2490 ===================================================================
2443 --- src/gtk/CellRendererToggle.d (revision 843) 2491 --- src/gtk/CellRendererToggle.d (revision 844)
2444 +++ src/gtk/CellRendererToggle.d (working copy) 2492 +++ src/gtk/CellRendererToggle.d (working copy)
2445 @@ -116,7 +116,7 @@ 2493 @@ -116,7 +116,7 @@
2446 this.gtkCellRendererToggle = gtkCellRendererToggle; 2494 this.gtkCellRendererToggle = gtkCellRendererToggle;
2447 } 2495 }
2448 2496
2451 { 2499 {
2452 super.setStruct(obj); 2500 super.setStruct(obj);
2453 gtkCellRendererToggle = cast(GtkCellRendererToggle*)obj; 2501 gtkCellRendererToggle = cast(GtkCellRendererToggle*)obj;
2454 Index: src/gtk/TreeViewColumn.d 2502 Index: src/gtk/TreeViewColumn.d
2455 =================================================================== 2503 ===================================================================
2456 --- src/gtk/TreeViewColumn.d (revision 843) 2504 --- src/gtk/TreeViewColumn.d (revision 844)
2457 +++ src/gtk/TreeViewColumn.d (working copy) 2505 +++ src/gtk/TreeViewColumn.d (working copy)
2458 @@ -146,7 +146,7 @@ 2506 @@ -146,7 +146,7 @@
2459 this.gtkTreeViewColumn = gtkTreeViewColumn; 2507 this.gtkTreeViewColumn = gtkTreeViewColumn;
2460 } 2508 }
2461 2509
2464 { 2512 {
2465 super.setStruct(obj); 2513 super.setStruct(obj);
2466 gtkTreeViewColumn = cast(GtkTreeViewColumn*)obj; 2514 gtkTreeViewColumn = cast(GtkTreeViewColumn*)obj;
2467 Index: src/gtk/UIManager.d 2515 Index: src/gtk/UIManager.d
2468 =================================================================== 2516 ===================================================================
2469 --- src/gtk/UIManager.d (revision 843) 2517 --- src/gtk/UIManager.d (revision 844)
2470 +++ src/gtk/UIManager.d (working copy) 2518 +++ src/gtk/UIManager.d (working copy)
2471 @@ -357,7 +357,7 @@ 2519 @@ -357,7 +357,7 @@
2472 this.gtkUIManager = gtkUIManager; 2520 this.gtkUIManager = gtkUIManager;
2473 } 2521 }
2474 2522
2477 { 2525 {
2478 super.setStruct(obj); 2526 super.setStruct(obj);
2479 gtkUIManager = cast(GtkUIManager*)obj; 2527 gtkUIManager = cast(GtkUIManager*)obj;
2480 Index: src/gtk/CheckButton.d 2528 Index: src/gtk/CheckButton.d
2481 =================================================================== 2529 ===================================================================
2482 --- src/gtk/CheckButton.d (revision 843) 2530 --- src/gtk/CheckButton.d (revision 844)
2483 +++ src/gtk/CheckButton.d (working copy) 2531 +++ src/gtk/CheckButton.d (working copy)
2484 @@ -113,7 +113,7 @@ 2532 @@ -113,7 +113,7 @@
2485 this.gtkCheckButton = gtkCheckButton; 2533 this.gtkCheckButton = gtkCheckButton;
2486 } 2534 }
2487 2535
2490 { 2538 {
2491 super.setStruct(obj); 2539 super.setStruct(obj);
2492 gtkCheckButton = cast(GtkCheckButton*)obj; 2540 gtkCheckButton = cast(GtkCheckButton*)obj;
2493 Index: src/gtk/ToolItemGroup.d 2541 Index: src/gtk/ToolItemGroup.d
2494 =================================================================== 2542 ===================================================================
2495 --- src/gtk/ToolItemGroup.d (revision 843) 2543 --- src/gtk/ToolItemGroup.d (revision 844)
2496 +++ src/gtk/ToolItemGroup.d (working copy) 2544 +++ src/gtk/ToolItemGroup.d (working copy)
2497 @@ -121,7 +121,7 @@ 2545 @@ -121,7 +121,7 @@
2498 this.gtkToolItemGroup = gtkToolItemGroup; 2546 this.gtkToolItemGroup = gtkToolItemGroup;
2499 } 2547 }
2500 2548
2503 { 2551 {
2504 super.setStruct(obj); 2552 super.setStruct(obj);
2505 gtkToolItemGroup = cast(GtkToolItemGroup*)obj; 2553 gtkToolItemGroup = cast(GtkToolItemGroup*)obj;
2506 Index: src/gtk/ColorButton.d 2554 Index: src/gtk/ColorButton.d
2507 =================================================================== 2555 ===================================================================
2508 --- src/gtk/ColorButton.d (revision 843) 2556 --- src/gtk/ColorButton.d (revision 844)
2509 +++ src/gtk/ColorButton.d (working copy) 2557 +++ src/gtk/ColorButton.d (working copy)
2510 @@ -115,7 +115,7 @@ 2558 @@ -115,7 +115,7 @@
2511 this.gtkColorButton = gtkColorButton; 2559 this.gtkColorButton = gtkColorButton;
2512 } 2560 }
2513 2561
2516 { 2564 {
2517 super.setStruct(obj); 2565 super.setStruct(obj);
2518 gtkColorButton = cast(GtkColorButton*)obj; 2566 gtkColorButton = cast(GtkColorButton*)obj;
2519 Index: src/gtk/Button.d 2567 Index: src/gtk/Button.d
2520 =================================================================== 2568 ===================================================================
2521 --- src/gtk/Button.d (revision 843) 2569 --- src/gtk/Button.d (revision 844)
2522 +++ src/gtk/Button.d (working copy) 2570 +++ src/gtk/Button.d (working copy)
2523 @@ -128,7 +128,7 @@ 2571 @@ -128,7 +128,7 @@
2524 this.gtkButton = gtkButton; 2572 this.gtkButton = gtkButton;
2525 } 2573 }
2526 2574
2529 { 2577 {
2530 super.setStruct(obj); 2578 super.setStruct(obj);
2531 gtkButton = cast(GtkButton*)obj; 2579 gtkButton = cast(GtkButton*)obj;
2532 Index: src/gtk/ToggleToolButton.d 2580 Index: src/gtk/ToggleToolButton.d
2533 =================================================================== 2581 ===================================================================
2534 --- src/gtk/ToggleToolButton.d (revision 843) 2582 --- src/gtk/ToggleToolButton.d (revision 844)
2535 +++ src/gtk/ToggleToolButton.d (working copy) 2583 +++ src/gtk/ToggleToolButton.d (working copy)
2536 @@ -117,7 +117,7 @@ 2584 @@ -117,7 +117,7 @@
2537 this.gtkToggleToolButton = gtkToggleToolButton; 2585 this.gtkToggleToolButton = gtkToggleToolButton;
2538 } 2586 }
2539 2587
2542 { 2590 {
2543 super.setStruct(obj); 2591 super.setStruct(obj);
2544 gtkToggleToolButton = cast(GtkToggleToolButton*)obj; 2592 gtkToggleToolButton = cast(GtkToggleToolButton*)obj;
2545 Index: src/gtk/Action.d 2593 Index: src/gtk/Action.d
2546 =================================================================== 2594 ===================================================================
2547 --- src/gtk/Action.d (revision 843) 2595 --- src/gtk/Action.d (revision 844)
2548 +++ src/gtk/Action.d (working copy) 2596 +++ src/gtk/Action.d (working copy)
2549 @@ -157,7 +157,7 @@ 2597 @@ -157,7 +157,7 @@
2550 this.gtkAction = gtkAction; 2598 this.gtkAction = gtkAction;
2551 } 2599 }
2552 2600
2555 { 2603 {
2556 super.setStruct(obj); 2604 super.setStruct(obj);
2557 gtkAction = cast(GtkAction*)obj; 2605 gtkAction = cast(GtkAction*)obj;
2558 Index: src/gtk/TextView.d 2606 Index: src/gtk/TextView.d
2559 =================================================================== 2607 ===================================================================
2560 --- src/gtk/TextView.d (revision 843) 2608 --- src/gtk/TextView.d (revision 844)
2561 +++ src/gtk/TextView.d (working copy) 2609 +++ src/gtk/TextView.d (working copy)
2562 @@ -143,7 +143,7 @@ 2610 @@ -143,7 +143,7 @@
2563 this.gtkTextView = gtkTextView; 2611 this.gtkTextView = gtkTextView;
2564 } 2612 }
2565 2613
2568 { 2616 {
2569 super.setStruct(obj); 2617 super.setStruct(obj);
2570 gtkTextView = cast(GtkTextView*)obj; 2618 gtkTextView = cast(GtkTextView*)obj;
2571 Index: src/gtk/VRuler.d 2619 Index: src/gtk/VRuler.d
2572 =================================================================== 2620 ===================================================================
2573 --- src/gtk/VRuler.d (revision 843) 2621 --- src/gtk/VRuler.d (revision 844)
2574 +++ src/gtk/VRuler.d (working copy) 2622 +++ src/gtk/VRuler.d (working copy)
2575 @@ -119,7 +119,7 @@ 2623 @@ -119,7 +119,7 @@
2576 this.gtkVRuler = gtkVRuler; 2624 this.gtkVRuler = gtkVRuler;
2577 } 2625 }
2578 2626
2581 { 2629 {
2582 super.setStruct(obj); 2630 super.setStruct(obj);
2583 gtkVRuler = cast(GtkVRuler*)obj; 2631 gtkVRuler = cast(GtkVRuler*)obj;
2584 Index: src/gtk/IconFactory.d 2632 Index: src/gtk/IconFactory.d
2585 =================================================================== 2633 ===================================================================
2586 --- src/gtk/IconFactory.d (revision 843) 2634 --- src/gtk/IconFactory.d (revision 844)
2587 +++ src/gtk/IconFactory.d (working copy) 2635 +++ src/gtk/IconFactory.d (working copy)
2588 @@ -176,7 +176,7 @@ 2636 @@ -176,7 +176,7 @@
2589 this.gtkIconFactory = gtkIconFactory; 2637 this.gtkIconFactory = gtkIconFactory;
2590 } 2638 }
2591 2639
2594 { 2642 {
2595 super.setStruct(obj); 2643 super.setStruct(obj);
2596 gtkIconFactory = cast(GtkIconFactory*)obj; 2644 gtkIconFactory = cast(GtkIconFactory*)obj;
2597 Index: src/gtk/InfoBar.d 2645 Index: src/gtk/InfoBar.d
2598 =================================================================== 2646 ===================================================================
2599 --- src/gtk/InfoBar.d (revision 843) 2647 --- src/gtk/InfoBar.d (revision 844)
2600 +++ src/gtk/InfoBar.d (working copy) 2648 +++ src/gtk/InfoBar.d (working copy)
2601 @@ -187,7 +187,7 @@ 2649 @@ -187,7 +187,7 @@
2602 this.gtkInfoBar = gtkInfoBar; 2650 this.gtkInfoBar = gtkInfoBar;
2603 } 2651 }
2604 2652
2607 { 2655 {
2608 super.setStruct(obj); 2656 super.setStruct(obj);
2609 gtkInfoBar = cast(GtkInfoBar*)obj; 2657 gtkInfoBar = cast(GtkInfoBar*)obj;
2610 Index: src/gtk/FileChooserDialog.d 2658 Index: src/gtk/FileChooserDialog.d
2611 =================================================================== 2659 ===================================================================
2612 --- src/gtk/FileChooserDialog.d (revision 843) 2660 --- src/gtk/FileChooserDialog.d (revision 844)
2613 +++ src/gtk/FileChooserDialog.d (working copy) 2661 +++ src/gtk/FileChooserDialog.d (working copy)
2614 @@ -199,7 +199,7 @@ 2662 @@ -199,7 +199,7 @@
2615 this.gtkFileChooserDialog = gtkFileChooserDialog; 2663 this.gtkFileChooserDialog = gtkFileChooserDialog;
2616 } 2664 }
2617 2665
2620 { 2668 {
2621 super.setStruct(obj); 2669 super.setStruct(obj);
2622 gtkFileChooserDialog = cast(GtkFileChooserDialog*)obj; 2670 gtkFileChooserDialog = cast(GtkFileChooserDialog*)obj;
2623 Index: src/gtk/ImageMenuItem.d 2671 Index: src/gtk/ImageMenuItem.d
2624 =================================================================== 2672 ===================================================================
2625 --- src/gtk/ImageMenuItem.d (revision 843) 2673 --- src/gtk/ImageMenuItem.d (revision 844)
2626 +++ src/gtk/ImageMenuItem.d (working copy) 2674 +++ src/gtk/ImageMenuItem.d (working copy)
2627 @@ -119,7 +119,7 @@ 2675 @@ -119,7 +119,7 @@
2628 this.gtkImageMenuItem = gtkImageMenuItem; 2676 this.gtkImageMenuItem = gtkImageMenuItem;
2629 } 2677 }
2630 2678
2633 { 2681 {
2634 super.setStruct(obj); 2682 super.setStruct(obj);
2635 gtkImageMenuItem = cast(GtkImageMenuItem*)obj; 2683 gtkImageMenuItem = cast(GtkImageMenuItem*)obj;
2636 Index: src/gtk/TextTagTable.d 2684 Index: src/gtk/TextTagTable.d
2637 =================================================================== 2685 ===================================================================
2638 --- src/gtk/TextTagTable.d (revision 843) 2686 --- src/gtk/TextTagTable.d (revision 844)
2639 +++ src/gtk/TextTagTable.d (working copy) 2687 +++ src/gtk/TextTagTable.d (working copy)
2640 @@ -116,7 +116,7 @@ 2688 @@ -116,7 +116,7 @@
2641 this.gtkTextTagTable = gtkTextTagTable; 2689 this.gtkTextTagTable = gtkTextTagTable;
2642 } 2690 }
2643 2691
2646 { 2694 {
2647 super.setStruct(obj); 2695 super.setStruct(obj);
2648 gtkTextTagTable = cast(GtkTextTagTable*)obj; 2696 gtkTextTagTable = cast(GtkTextTagTable*)obj;
2649 Index: src/gtk/LinkButton.d 2697 Index: src/gtk/LinkButton.d
2650 =================================================================== 2698 ===================================================================
2651 --- src/gtk/LinkButton.d (revision 843) 2699 --- src/gtk/LinkButton.d (revision 844)
2652 +++ src/gtk/LinkButton.d (working copy) 2700 +++ src/gtk/LinkButton.d (working copy)
2653 @@ -121,7 +121,7 @@ 2701 @@ -121,7 +121,7 @@
2654 this.gtkLinkButton = gtkLinkButton; 2702 this.gtkLinkButton = gtkLinkButton;
2655 } 2703 }
2656 2704
2659 { 2707 {
2660 super.setStruct(obj); 2708 super.setStruct(obj);
2661 gtkLinkButton = cast(GtkLinkButton*)obj; 2709 gtkLinkButton = cast(GtkLinkButton*)obj;
2662 Index: src/gtk/TreeView.d 2710 Index: src/gtk/TreeView.d
2663 =================================================================== 2711 ===================================================================
2664 --- src/gtk/TreeView.d (revision 843) 2712 --- src/gtk/TreeView.d (revision 844)
2665 +++ src/gtk/TreeView.d (working copy) 2713 +++ src/gtk/TreeView.d (working copy)
2666 @@ -201,7 +201,7 @@ 2714 @@ -201,7 +201,7 @@
2667 this.gtkTreeView = gtkTreeView; 2715 this.gtkTreeView = gtkTreeView;
2668 } 2716 }
2669 2717
2672 { 2720 {
2673 super.setStruct(obj); 2721 super.setStruct(obj);
2674 gtkTreeView = cast(GtkTreeView*)obj; 2722 gtkTreeView = cast(GtkTreeView*)obj;
2675 Index: src/glade/Glade.d 2723 Index: src/glade/Glade.d
2676 =================================================================== 2724 ===================================================================
2677 --- src/glade/Glade.d (revision 843) 2725 --- src/glade/Glade.d (revision 844)
2678 +++ src/glade/Glade.d (working copy) 2726 +++ src/glade/Glade.d (working copy)
2679 @@ -136,7 +136,7 @@ 2727 @@ -136,7 +136,7 @@
2680 this.gladeXML = gladeXML; 2728 this.gladeXML = gladeXML;
2681 } 2729 }
2682 2730
2685 { 2733 {
2686 super.setStruct(obj); 2734 super.setStruct(obj);
2687 gladeXML = cast(GladeXML*)obj; 2735 gladeXML = cast(GladeXML*)obj;
2688 Index: src/gobject/TypeModule.d 2736 Index: src/gobject/TypeModule.d
2689 =================================================================== 2737 ===================================================================
2690 --- src/gobject/TypeModule.d (revision 843) 2738 --- src/gobject/TypeModule.d (revision 844)
2691 +++ src/gobject/TypeModule.d (working copy) 2739 +++ src/gobject/TypeModule.d (working copy)
2692 @@ -137,7 +137,7 @@ 2740 @@ -137,7 +137,7 @@
2693 this.gTypeModule = gTypeModule; 2741 this.gTypeModule = gTypeModule;
2694 } 2742 }
2695 2743
2698 { 2746 {
2699 super.setStruct(obj); 2747 super.setStruct(obj);
2700 gTypeModule = cast(GTypeModule*)obj; 2748 gTypeModule = cast(GTypeModule*)obj;
2701 Index: src/gio/Vfs.d 2749 Index: src/gio/Vfs.d
2702 =================================================================== 2750 ===================================================================
2703 --- src/gio/Vfs.d (revision 843) 2751 --- src/gio/Vfs.d (revision 844)
2704 +++ src/gio/Vfs.d (working copy) 2752 +++ src/gio/Vfs.d (working copy)
2705 @@ -111,7 +111,7 @@ 2753 @@ -111,7 +111,7 @@
2706 this.gVfs = gVfs; 2754 this.gVfs = gVfs;
2707 } 2755 }
2708 2756
2711 { 2759 {
2712 super.setStruct(obj); 2760 super.setStruct(obj);
2713 gVfs = cast(GVfs*)obj; 2761 gVfs = cast(GVfs*)obj;
2714 Index: src/gio/MemoryOutputStream.d 2762 Index: src/gio/MemoryOutputStream.d
2715 =================================================================== 2763 ===================================================================
2716 --- src/gio/MemoryOutputStream.d (revision 843) 2764 --- src/gio/MemoryOutputStream.d (revision 844)
2717 +++ src/gio/MemoryOutputStream.d (working copy) 2765 +++ src/gio/MemoryOutputStream.d (working copy)
2718 @@ -111,7 +111,7 @@ 2766 @@ -111,7 +111,7 @@
2719 this.gMemoryOutputStream = gMemoryOutputStream; 2767 this.gMemoryOutputStream = gMemoryOutputStream;
2720 } 2768 }
2721 2769
2724 { 2772 {
2725 super.setStruct(obj); 2773 super.setStruct(obj);
2726 gMemoryOutputStream = cast(GMemoryOutputStream*)obj; 2774 gMemoryOutputStream = cast(GMemoryOutputStream*)obj;
2727 Index: src/gio/DataOutputStream.d 2775 Index: src/gio/DataOutputStream.d
2728 =================================================================== 2776 ===================================================================
2729 --- src/gio/DataOutputStream.d (revision 843) 2777 --- src/gio/DataOutputStream.d (revision 844)
2730 +++ src/gio/DataOutputStream.d (working copy) 2778 +++ src/gio/DataOutputStream.d (working copy)
2731 @@ -118,7 +118,7 @@ 2779 @@ -118,7 +118,7 @@
2732 this.gDataOutputStream = gDataOutputStream; 2780 this.gDataOutputStream = gDataOutputStream;
2733 } 2781 }
2734 2782
2737 { 2785 {
2738 super.setStruct(obj); 2786 super.setStruct(obj);
2739 gDataOutputStream = cast(GDataOutputStream*)obj; 2787 gDataOutputStream = cast(GDataOutputStream*)obj;
2740 Index: src/gio/SocketConnection.d 2788 Index: src/gio/SocketConnection.d
2741 =================================================================== 2789 ===================================================================
2742 --- src/gio/SocketConnection.d (revision 843) 2790 --- src/gio/SocketConnection.d (revision 844)
2743 +++ src/gio/SocketConnection.d (working copy) 2791 +++ src/gio/SocketConnection.d (working copy)
2744 @@ -127,7 +127,7 @@ 2792 @@ -127,7 +127,7 @@
2745 this.gSocketConnection = gSocketConnection; 2793 this.gSocketConnection = gSocketConnection;
2746 } 2794 }
2747 2795
2750 { 2798 {
2751 super.setStruct(obj); 2799 super.setStruct(obj);
2752 gSocketConnection = cast(GSocketConnection*)obj; 2800 gSocketConnection = cast(GSocketConnection*)obj;
2753 Index: src/gio/SocketService.d 2801 Index: src/gio/SocketService.d
2754 =================================================================== 2802 ===================================================================
2755 --- src/gio/SocketService.d (revision 843) 2803 --- src/gio/SocketService.d (revision 844)
2756 +++ src/gio/SocketService.d (working copy) 2804 +++ src/gio/SocketService.d (working copy)
2757 @@ -126,7 +126,7 @@ 2805 @@ -126,7 +126,7 @@
2758 this.gSocketService = gSocketService; 2806 this.gSocketService = gSocketService;
2759 } 2807 }
2760 2808
2763 { 2811 {
2764 super.setStruct(obj); 2812 super.setStruct(obj);
2765 gSocketService = cast(GSocketService*)obj; 2813 gSocketService = cast(GSocketService*)obj;
2766 Index: src/gio/NetworkService.d 2814 Index: src/gio/NetworkService.d
2767 =================================================================== 2815 ===================================================================
2768 --- src/gio/NetworkService.d (revision 843) 2816 --- src/gio/NetworkService.d (revision 844)
2769 +++ src/gio/NetworkService.d (working copy) 2817 +++ src/gio/NetworkService.d (working copy)
2770 @@ -119,7 +119,7 @@ 2818 @@ -119,7 +119,7 @@
2771 this.gNetworkService = gNetworkService; 2819 this.gNetworkService = gNetworkService;
2772 } 2820 }
2773 2821
2776 { 2824 {
2777 super.setStruct(obj); 2825 super.setStruct(obj);
2778 gNetworkService = cast(GNetworkService*)obj; 2826 gNetworkService = cast(GNetworkService*)obj;
2779 Index: src/gio/FileEnumerator.d 2827 Index: src/gio/FileEnumerator.d
2780 =================================================================== 2828 ===================================================================
2781 --- src/gio/FileEnumerator.d (revision 843) 2829 --- src/gio/FileEnumerator.d (revision 844)
2782 +++ src/gio/FileEnumerator.d (working copy) 2830 +++ src/gio/FileEnumerator.d (working copy)
2783 @@ -135,7 +135,7 @@ 2831 @@ -135,7 +135,7 @@
2784 this.gFileEnumerator = gFileEnumerator; 2832 this.gFileEnumerator = gFileEnumerator;
2785 } 2833 }
2786 2834
2789 { 2837 {
2790 super.setStruct(obj); 2838 super.setStruct(obj);
2791 gFileEnumerator = cast(GFileEnumerator*)obj; 2839 gFileEnumerator = cast(GFileEnumerator*)obj;
2792 Index: src/gio/FilterOutputStream.d 2840 Index: src/gio/FilterOutputStream.d
2793 =================================================================== 2841 ===================================================================
2794 --- src/gio/FilterOutputStream.d (revision 843) 2842 --- src/gio/FilterOutputStream.d (revision 844)
2795 +++ src/gio/FilterOutputStream.d (working copy) 2843 +++ src/gio/FilterOutputStream.d (working copy)
2796 @@ -107,7 +107,7 @@ 2844 @@ -107,7 +107,7 @@
2797 this.gFilterOutputStream = gFilterOutputStream; 2845 this.gFilterOutputStream = gFilterOutputStream;
2798 } 2846 }
2799 2847
2802 { 2850 {
2803 super.setStruct(obj); 2851 super.setStruct(obj);
2804 gFilterOutputStream = cast(GFilterOutputStream*)obj; 2852 gFilterOutputStream = cast(GFilterOutputStream*)obj;
2805 Index: src/gio/EmblemedIcon.d 2853 Index: src/gio/EmblemedIcon.d
2806 =================================================================== 2854 ===================================================================
2807 --- src/gio/EmblemedIcon.d (revision 843) 2855 --- src/gio/EmblemedIcon.d (revision 844)
2808 +++ src/gio/EmblemedIcon.d (working copy) 2856 +++ src/gio/EmblemedIcon.d (working copy)
2809 @@ -123,7 +123,7 @@ 2857 @@ -123,7 +123,7 @@
2810 this.gEmblemedIcon = gEmblemedIcon; 2858 this.gEmblemedIcon = gEmblemedIcon;
2811 } 2859 }
2812 2860
2815 { 2863 {
2816 super.setStruct(obj); 2864 super.setStruct(obj);
2817 gEmblemedIcon = cast(GEmblemedIcon*)obj; 2865 gEmblemedIcon = cast(GEmblemedIcon*)obj;
2818 Index: src/gio/FileMonitor.d 2866 Index: src/gio/FileMonitor.d
2819 =================================================================== 2867 ===================================================================
2820 --- src/gio/FileMonitor.d (revision 843) 2868 --- src/gio/FileMonitor.d (revision 844)
2821 +++ src/gio/FileMonitor.d (working copy) 2869 +++ src/gio/FileMonitor.d (working copy)
2822 @@ -120,7 +120,7 @@ 2870 @@ -120,7 +120,7 @@
2823 this.gFileMonitor = gFileMonitor; 2871 this.gFileMonitor = gFileMonitor;
2824 } 2872 }
2825 2873
2828 { 2876 {
2829 super.setStruct(obj); 2877 super.setStruct(obj);
2830 gFileMonitor = cast(GFileMonitor*)obj; 2878 gFileMonitor = cast(GFileMonitor*)obj;
2831 Index: src/gio/FileIcon.d 2879 Index: src/gio/FileIcon.d
2832 =================================================================== 2880 ===================================================================
2833 --- src/gio/FileIcon.d (revision 843) 2881 --- src/gio/FileIcon.d (revision 844)
2834 +++ src/gio/FileIcon.d (working copy) 2882 +++ src/gio/FileIcon.d (working copy)
2835 @@ -116,7 +116,7 @@ 2883 @@ -116,7 +116,7 @@
2836 this.gFileIcon = gFileIcon; 2884 this.gFileIcon = gFileIcon;
2837 } 2885 }
2838 2886
2841 { 2889 {
2842 super.setStruct(obj); 2890 super.setStruct(obj);
2843 gFileIcon = cast(GFileIcon*)obj; 2891 gFileIcon = cast(GFileIcon*)obj;
2844 Index: src/gio/SocketAddress.d 2892 Index: src/gio/SocketAddress.d
2845 =================================================================== 2893 ===================================================================
2846 --- src/gio/SocketAddress.d (revision 843) 2894 --- src/gio/SocketAddress.d (revision 844)
2847 +++ src/gio/SocketAddress.d (working copy) 2895 +++ src/gio/SocketAddress.d (working copy)
2848 @@ -120,7 +120,7 @@ 2896 @@ -120,7 +120,7 @@
2849 this.gSocketAddress = gSocketAddress; 2897 this.gSocketAddress = gSocketAddress;
2850 } 2898 }
2851 2899
2854 { 2902 {
2855 super.setStruct(obj); 2903 super.setStruct(obj);
2856 gSocketAddress = cast(GSocketAddress*)obj; 2904 gSocketAddress = cast(GSocketAddress*)obj;
2857 Index: src/gio/NetworkAddress.d 2905 Index: src/gio/NetworkAddress.d
2858 =================================================================== 2906 ===================================================================
2859 --- src/gio/NetworkAddress.d (revision 843) 2907 --- src/gio/NetworkAddress.d (revision 844)
2860 +++ src/gio/NetworkAddress.d (working copy) 2908 +++ src/gio/NetworkAddress.d (working copy)
2861 @@ -122,7 +122,7 @@ 2909 @@ -122,7 +122,7 @@
2862 this.gNetworkAddress = gNetworkAddress; 2910 this.gNetworkAddress = gNetworkAddress;
2863 } 2911 }
2864 2912
2867 { 2915 {
2868 super.setStruct(obj); 2916 super.setStruct(obj);
2869 gNetworkAddress = cast(GNetworkAddress*)obj; 2917 gNetworkAddress = cast(GNetworkAddress*)obj;
2870 Index: src/gio/Emblem.d 2918 Index: src/gio/Emblem.d
2871 =================================================================== 2919 ===================================================================
2872 --- src/gio/Emblem.d (revision 843) 2920 --- src/gio/Emblem.d (revision 844)
2873 +++ src/gio/Emblem.d (working copy) 2921 +++ src/gio/Emblem.d (working copy)
2874 @@ -117,7 +117,7 @@ 2922 @@ -117,7 +117,7 @@
2875 this.gEmblem = gEmblem; 2923 this.gEmblem = gEmblem;
2876 } 2924 }
2877 2925
2880 { 2928 {
2881 super.setStruct(obj); 2929 super.setStruct(obj);
2882 gEmblem = cast(GEmblem*)obj; 2930 gEmblem = cast(GEmblem*)obj;
2883 Index: src/gio/Resolver.d 2931 Index: src/gio/Resolver.d
2884 =================================================================== 2932 ===================================================================
2885 --- src/gio/Resolver.d (revision 843) 2933 --- src/gio/Resolver.d (revision 844)
2886 +++ src/gio/Resolver.d (working copy) 2934 +++ src/gio/Resolver.d (working copy)
2887 @@ -129,7 +129,7 @@ 2935 @@ -129,7 +129,7 @@
2888 this.gResolver = gResolver; 2936 this.gResolver = gResolver;
2889 } 2937 }
2890 2938
2893 { 2941 {
2894 super.setStruct(obj); 2942 super.setStruct(obj);
2895 gResolver = cast(GResolver*)obj; 2943 gResolver = cast(GResolver*)obj;
2896 Index: src/gio/UnixFDMessage.d 2944 Index: src/gio/UnixFDMessage.d
2897 =================================================================== 2945 ===================================================================
2898 --- src/gio/UnixFDMessage.d (revision 843) 2946 --- src/gio/UnixFDMessage.d (revision 844)
2899 +++ src/gio/UnixFDMessage.d (working copy) 2947 +++ src/gio/UnixFDMessage.d (working copy)
2900 @@ -119,7 +119,7 @@ 2948 @@ -119,7 +119,7 @@
2901 this.gUnixFDMessage = gUnixFDMessage; 2949 this.gUnixFDMessage = gUnixFDMessage;
2902 } 2950 }
2903 2951
2906 { 2954 {
2907 super.setStruct(obj); 2955 super.setStruct(obj);
2908 gUnixFDMessage = cast(GUnixFDMessage*)obj; 2956 gUnixFDMessage = cast(GUnixFDMessage*)obj;
2909 Index: src/gio/DataInputStream.d 2957 Index: src/gio/DataInputStream.d
2910 =================================================================== 2958 ===================================================================
2911 --- src/gio/DataInputStream.d (revision 843) 2959 --- src/gio/DataInputStream.d (revision 844)
2912 +++ src/gio/DataInputStream.d (working copy) 2960 +++ src/gio/DataInputStream.d (working copy)
2913 @@ -119,7 +119,7 @@ 2961 @@ -119,7 +119,7 @@
2914 this.gDataInputStream = gDataInputStream; 2962 this.gDataInputStream = gDataInputStream;
2915 } 2963 }
2916 2964
2919 { 2967 {
2920 super.setStruct(obj); 2968 super.setStruct(obj);
2921 gDataInputStream = cast(GDataInputStream*)obj; 2969 gDataInputStream = cast(GDataInputStream*)obj;
2922 Index: src/gio/FileInputStream.d 2970 Index: src/gio/FileInputStream.d
2923 =================================================================== 2971 ===================================================================
2924 --- src/gio/FileInputStream.d (revision 843) 2972 --- src/gio/FileInputStream.d (revision 844)
2925 +++ src/gio/FileInputStream.d (working copy) 2973 +++ src/gio/FileInputStream.d (working copy)
2926 @@ -132,7 +132,7 @@ 2974 @@ -132,7 +132,7 @@
2927 this.gFileInputStream = gFileInputStream; 2975 this.gFileInputStream = gFileInputStream;
2928 } 2976 }
2929 2977
2932 { 2980 {
2933 super.setStruct(obj); 2981 super.setStruct(obj);
2934 gFileInputStream = cast(GFileInputStream*)obj; 2982 gFileInputStream = cast(GFileInputStream*)obj;
2935 Index: src/gio/InputStream.d 2983 Index: src/gio/InputStream.d
2936 =================================================================== 2984 ===================================================================
2937 --- src/gio/InputStream.d (revision 843) 2985 --- src/gio/InputStream.d (revision 844)
2938 +++ src/gio/InputStream.d (working copy) 2986 +++ src/gio/InputStream.d (working copy)
2939 @@ -120,7 +120,7 @@ 2987 @@ -120,7 +120,7 @@
2940 this.gInputStream = gInputStream; 2988 this.gInputStream = gInputStream;
2941 } 2989 }
2942 2990
2945 { 2993 {
2946 super.setStruct(obj); 2994 super.setStruct(obj);
2947 gInputStream = cast(GInputStream*)obj; 2995 gInputStream = cast(GInputStream*)obj;
2948 Index: src/gio/InetSocketAddress.d 2996 Index: src/gio/InetSocketAddress.d
2949 =================================================================== 2997 ===================================================================
2950 --- src/gio/InetSocketAddress.d (revision 843) 2998 --- src/gio/InetSocketAddress.d (revision 844)
2951 +++ src/gio/InetSocketAddress.d (working copy) 2999 +++ src/gio/InetSocketAddress.d (working copy)
2952 @@ -109,7 +109,7 @@ 3000 @@ -109,7 +109,7 @@
2953 this.gInetSocketAddress = gInetSocketAddress; 3001 this.gInetSocketAddress = gInetSocketAddress;
2954 } 3002 }
2955 3003
2958 { 3006 {
2959 super.setStruct(obj); 3007 super.setStruct(obj);
2960 gInetSocketAddress = cast(GInetSocketAddress*)obj; 3008 gInetSocketAddress = cast(GInetSocketAddress*)obj;
2961 Index: src/gio/VolumeMonitor.d 3009 Index: src/gio/VolumeMonitor.d
2962 =================================================================== 3010 ===================================================================
2963 --- src/gio/VolumeMonitor.d (revision 843) 3011 --- src/gio/VolumeMonitor.d (revision 844)
2964 +++ src/gio/VolumeMonitor.d (working copy) 3012 +++ src/gio/VolumeMonitor.d (working copy)
2965 @@ -134,7 +134,7 @@ 3013 @@ -134,7 +134,7 @@
2966 this.gVolumeMonitor = gVolumeMonitor; 3014 this.gVolumeMonitor = gVolumeMonitor;
2967 } 3015 }
2968 3016
2971 { 3019 {
2972 super.setStruct(obj); 3020 super.setStruct(obj);
2973 gVolumeMonitor = cast(GVolumeMonitor*)obj; 3021 gVolumeMonitor = cast(GVolumeMonitor*)obj;
2974 Index: src/gio/FilterInputStream.d 3022 Index: src/gio/FilterInputStream.d
2975 =================================================================== 3023 ===================================================================
2976 --- src/gio/FilterInputStream.d (revision 843) 3024 --- src/gio/FilterInputStream.d (revision 844)
2977 +++ src/gio/FilterInputStream.d (working copy) 3025 +++ src/gio/FilterInputStream.d (working copy)
2978 @@ -107,7 +107,7 @@ 3026 @@ -107,7 +107,7 @@
2979 this.gFilterInputStream = gFilterInputStream; 3027 this.gFilterInputStream = gFilterInputStream;
2980 } 3028 }
2981 3029
2984 { 3032 {
2985 super.setStruct(obj); 3033 super.setStruct(obj);
2986 gFilterInputStream = cast(GFilterInputStream*)obj; 3034 gFilterInputStream = cast(GFilterInputStream*)obj;
2987 Index: src/gio/CharsetConverter.d 3035 Index: src/gio/CharsetConverter.d
2988 =================================================================== 3036 ===================================================================
2989 --- src/gio/CharsetConverter.d (revision 843) 3037 --- src/gio/CharsetConverter.d (revision 844)
2990 +++ src/gio/CharsetConverter.d (working copy) 3038 +++ src/gio/CharsetConverter.d (working copy)
2991 @@ -117,7 +117,7 @@ 3039 @@ -117,7 +117,7 @@
2992 this.gCharsetConverter = gCharsetConverter; 3040 this.gCharsetConverter = gCharsetConverter;
2993 } 3041 }
2994 3042
2997 { 3045 {
2998 super.setStruct(obj); 3046 super.setStruct(obj);
2999 gCharsetConverter = cast(GCharsetConverter*)obj; 3047 gCharsetConverter = cast(GCharsetConverter*)obj;
3000 Index: src/gio/MountOperation.d 3048 Index: src/gio/MountOperation.d
3001 =================================================================== 3049 ===================================================================
3002 --- src/gio/MountOperation.d (revision 843) 3050 --- src/gio/MountOperation.d (revision 844)
3003 +++ src/gio/MountOperation.d (working copy) 3051 +++ src/gio/MountOperation.d (working copy)
3004 @@ -124,7 +124,7 @@ 3052 @@ -124,7 +124,7 @@
3005 this.gMountOperation = gMountOperation; 3053 this.gMountOperation = gMountOperation;
3006 } 3054 }
3007 3055
3010 { 3058 {
3011 super.setStruct(obj); 3059 super.setStruct(obj);
3012 gMountOperation = cast(GMountOperation*)obj; 3060 gMountOperation = cast(GMountOperation*)obj;
3013 Index: src/gio/Cancellable.d 3061 Index: src/gio/Cancellable.d
3014 =================================================================== 3062 ===================================================================
3015 --- src/gio/Cancellable.d (revision 843) 3063 --- src/gio/Cancellable.d (revision 844)
3016 +++ src/gio/Cancellable.d (working copy) 3064 +++ src/gio/Cancellable.d (working copy)
3017 @@ -114,7 +114,7 @@ 3065 @@ -114,7 +114,7 @@
3018 this.gCancellable = gCancellable; 3066 this.gCancellable = gCancellable;
3019 } 3067 }
3020 3068
3023 { 3071 {
3024 super.setStruct(obj); 3072 super.setStruct(obj);
3025 gCancellable = cast(GCancellable*)obj; 3073 gCancellable = cast(GCancellable*)obj;
3026 Index: src/gio/SimpleAsyncResult.d 3074 Index: src/gio/SimpleAsyncResult.d
3027 =================================================================== 3075 ===================================================================
3028 --- src/gio/SimpleAsyncResult.d (revision 843) 3076 --- src/gio/SimpleAsyncResult.d (revision 844)
3029 +++ src/gio/SimpleAsyncResult.d (working copy) 3077 +++ src/gio/SimpleAsyncResult.d (working copy)
3030 @@ -177,7 +177,7 @@ 3078 @@ -177,7 +177,7 @@
3031 this.gSimpleAsyncResult = gSimpleAsyncResult; 3079 this.gSimpleAsyncResult = gSimpleAsyncResult;
3032 } 3080 }
3033 3081
3036 { 3084 {
3037 super.setStruct(obj); 3085 super.setStruct(obj);
3038 gSimpleAsyncResult = cast(GSimpleAsyncResult*)obj; 3086 gSimpleAsyncResult = cast(GSimpleAsyncResult*)obj;
3039 Index: src/gio/FilenameCompleter.d 3087 Index: src/gio/FilenameCompleter.d
3040 =================================================================== 3088 ===================================================================
3041 --- src/gio/FilenameCompleter.d (revision 843) 3089 --- src/gio/FilenameCompleter.d (revision 844)
3042 +++ src/gio/FilenameCompleter.d (working copy) 3090 +++ src/gio/FilenameCompleter.d (working copy)
3043 @@ -111,7 +111,7 @@ 3091 @@ -111,7 +111,7 @@
3044 this.gFilenameCompleter = gFilenameCompleter; 3092 this.gFilenameCompleter = gFilenameCompleter;
3045 } 3093 }
3046 3094
3049 { 3097 {
3050 super.setStruct(obj); 3098 super.setStruct(obj);
3051 gFilenameCompleter = cast(GFilenameCompleter*)obj; 3099 gFilenameCompleter = cast(GFilenameCompleter*)obj;
3052 Index: src/gio/SocketListener.d 3100 Index: src/gio/SocketListener.d
3053 =================================================================== 3101 ===================================================================
3054 --- src/gio/SocketListener.d (revision 843) 3102 --- src/gio/SocketListener.d (revision 844)
3055 +++ src/gio/SocketListener.d (working copy) 3103 +++ src/gio/SocketListener.d (working copy)
3056 @@ -130,7 +130,7 @@ 3104 @@ -130,7 +130,7 @@
3057 this.gSocketListener = gSocketListener; 3105 this.gSocketListener = gSocketListener;
3058 } 3106 }
3059 3107
3062 { 3110 {
3063 super.setStruct(obj); 3111 super.setStruct(obj);
3064 gSocketListener = cast(GSocketListener*)obj; 3112 gSocketListener = cast(GSocketListener*)obj;
3065 Index: src/gio/SocketControlMessage.d 3113 Index: src/gio/SocketControlMessage.d
3066 =================================================================== 3114 ===================================================================
3067 --- src/gio/SocketControlMessage.d (revision 843) 3115 --- src/gio/SocketControlMessage.d (revision 844)
3068 +++ src/gio/SocketControlMessage.d (working copy) 3116 +++ src/gio/SocketControlMessage.d (working copy)
3069 @@ -121,7 +121,7 @@ 3117 @@ -121,7 +121,7 @@
3070 this.gSocketControlMessage = gSocketControlMessage; 3118 this.gSocketControlMessage = gSocketControlMessage;
3071 } 3119 }
3072 3120
3075 { 3123 {
3076 super.setStruct(obj); 3124 super.setStruct(obj);
3077 gSocketControlMessage = cast(GSocketControlMessage*)obj; 3125 gSocketControlMessage = cast(GSocketControlMessage*)obj;
3078 Index: src/gio/UnixSocketAddress.d 3126 Index: src/gio/UnixSocketAddress.d
3079 =================================================================== 3127 ===================================================================
3080 --- src/gio/UnixSocketAddress.d (revision 843) 3128 --- src/gio/UnixSocketAddress.d (revision 844)
3081 +++ src/gio/UnixSocketAddress.d (working copy) 3129 +++ src/gio/UnixSocketAddress.d (working copy)
3082 @@ -107,7 +107,7 @@ 3130 @@ -107,7 +107,7 @@
3083 this.gUnixSocketAddress = gUnixSocketAddress; 3131 this.gUnixSocketAddress = gUnixSocketAddress;
3084 } 3132 }
3085 3133
3088 { 3136 {
3089 super.setStruct(obj); 3137 super.setStruct(obj);
3090 gUnixSocketAddress = cast(GUnixSocketAddress*)obj; 3138 gUnixSocketAddress = cast(GUnixSocketAddress*)obj;
3091 Index: src/gio/MemoryInputStream.d 3139 Index: src/gio/MemoryInputStream.d
3092 =================================================================== 3140 ===================================================================
3093 --- src/gio/MemoryInputStream.d (revision 843) 3141 --- src/gio/MemoryInputStream.d (revision 844)
3094 +++ src/gio/MemoryInputStream.d (working copy) 3142 +++ src/gio/MemoryInputStream.d (working copy)
3095 @@ -111,7 +111,7 @@ 3143 @@ -111,7 +111,7 @@
3096 this.gMemoryInputStream = gMemoryInputStream; 3144 this.gMemoryInputStream = gMemoryInputStream;
3097 } 3145 }
3098 3146
3101 { 3149 {
3102 super.setStruct(obj); 3150 super.setStruct(obj);
3103 gMemoryInputStream = cast(GMemoryInputStream*)obj; 3151 gMemoryInputStream = cast(GMemoryInputStream*)obj;
3104 Index: src/gio/InetAddress.d 3152 Index: src/gio/InetAddress.d
3105 =================================================================== 3153 ===================================================================
3106 --- src/gio/InetAddress.d (revision 843) 3154 --- src/gio/InetAddress.d (revision 844)
3107 +++ src/gio/InetAddress.d (working copy) 3155 +++ src/gio/InetAddress.d (working copy)
3108 @@ -116,7 +116,7 @@ 3156 @@ -116,7 +116,7 @@
3109 this.gInetAddress = gInetAddress; 3157 this.gInetAddress = gInetAddress;
3110 } 3158 }
3111 3159
3114 { 3162 {
3115 super.setStruct(obj); 3163 super.setStruct(obj);
3116 gInetAddress = cast(GInetAddress*)obj; 3164 gInetAddress = cast(GInetAddress*)obj;
3117 Index: src/gio/TcpConnection.d 3165 Index: src/gio/TcpConnection.d
3118 =================================================================== 3166 ===================================================================
3119 --- src/gio/TcpConnection.d (revision 843) 3167 --- src/gio/TcpConnection.d (revision 844)
3120 +++ src/gio/TcpConnection.d (working copy) 3168 +++ src/gio/TcpConnection.d (working copy)
3121 @@ -114,7 +114,7 @@ 3169 @@ -114,7 +114,7 @@
3122 this.gTcpConnection = gTcpConnection; 3170 this.gTcpConnection = gTcpConnection;
3123 } 3171 }
3124 3172
3127 { 3175 {
3128 super.setStruct(obj); 3176 super.setStruct(obj);
3129 gTcpConnection = cast(GTcpConnection*)obj; 3177 gTcpConnection = cast(GTcpConnection*)obj;
3130 Index: src/gio/ThreadedSocketService.d 3178 Index: src/gio/ThreadedSocketService.d
3131 =================================================================== 3179 ===================================================================
3132 --- src/gio/ThreadedSocketService.d (revision 843) 3180 --- src/gio/ThreadedSocketService.d (revision 844)
3133 +++ src/gio/ThreadedSocketService.d (working copy) 3181 +++ src/gio/ThreadedSocketService.d (working copy)
3134 @@ -118,7 +118,7 @@ 3182 @@ -118,7 +118,7 @@
3135 this.gThreadedSocketService = gThreadedSocketService; 3183 this.gThreadedSocketService = gThreadedSocketService;
3136 } 3184 }
3137 3185
3140 { 3188 {
3141 super.setStruct(obj); 3189 super.setStruct(obj);
3142 gThreadedSocketService = cast(GThreadedSocketService*)obj; 3190 gThreadedSocketService = cast(GThreadedSocketService*)obj;
3143 Index: src/gio/OutputStream.d 3191 Index: src/gio/OutputStream.d
3144 =================================================================== 3192 ===================================================================
3145 --- src/gio/OutputStream.d (revision 843) 3193 --- src/gio/OutputStream.d (revision 844)
3146 +++ src/gio/OutputStream.d (working copy) 3194 +++ src/gio/OutputStream.d (working copy)
3147 @@ -123,7 +123,7 @@ 3195 @@ -123,7 +123,7 @@
3148 this.gOutputStream = gOutputStream; 3196 this.gOutputStream = gOutputStream;
3149 } 3197 }
3150 3198
3153 { 3201 {
3154 super.setStruct(obj); 3202 super.setStruct(obj);
3155 gOutputStream = cast(GOutputStream*)obj; 3203 gOutputStream = cast(GOutputStream*)obj;
3156 Index: src/gio/FileOutputStream.d 3204 Index: src/gio/FileOutputStream.d
3157 =================================================================== 3205 ===================================================================
3158 --- src/gio/FileOutputStream.d (revision 843) 3206 --- src/gio/FileOutputStream.d (revision 844)
3159 +++ src/gio/FileOutputStream.d (working copy) 3207 +++ src/gio/FileOutputStream.d (working copy)
3160 @@ -136,7 +136,7 @@ 3208 @@ -136,7 +136,7 @@
3161 this.gFileOutputStream = gFileOutputStream; 3209 this.gFileOutputStream = gFileOutputStream;
3162 } 3210 }
3163 3211
3166 { 3214 {
3167 super.setStruct(obj); 3215 super.setStruct(obj);
3168 gFileOutputStream = cast(GFileOutputStream*)obj; 3216 gFileOutputStream = cast(GFileOutputStream*)obj;
3169 Index: src/gio/IOModule.d 3217 Index: src/gio/IOModule.d
3170 =================================================================== 3218 ===================================================================
3171 --- src/gio/IOModule.d (revision 843) 3219 --- src/gio/IOModule.d (revision 844)
3172 +++ src/gio/IOModule.d (working copy) 3220 +++ src/gio/IOModule.d (working copy)
3173 @@ -113,7 +113,7 @@ 3221 @@ -113,7 +113,7 @@
3174 this.gIOModule = gIOModule; 3222 this.gIOModule = gIOModule;
3175 } 3223 }
3176 3224
3179 { 3227 {
3180 super.setStruct(obj); 3228 super.setStruct(obj);
3181 gIOModule = cast(GIOModule*)obj; 3229 gIOModule = cast(GIOModule*)obj;
3182 Index: src/gio/UnixMountMonitor.d 3230 Index: src/gio/UnixMountMonitor.d
3183 =================================================================== 3231 ===================================================================
3184 --- src/gio/UnixMountMonitor.d (revision 843) 3232 --- src/gio/UnixMountMonitor.d (revision 844)
3185 +++ src/gio/UnixMountMonitor.d (working copy) 3233 +++ src/gio/UnixMountMonitor.d (working copy)
3186 @@ -110,7 +110,7 @@ 3234 @@ -110,7 +110,7 @@
3187 this.gUnixMountMonitor = gUnixMountMonitor; 3235 this.gUnixMountMonitor = gUnixMountMonitor;
3188 } 3236 }
3189 3237
3192 { 3240 {
3193 super.setStruct(obj); 3241 super.setStruct(obj);
3194 gUnixMountMonitor = cast(GUnixMountMonitor*)obj; 3242 gUnixMountMonitor = cast(GUnixMountMonitor*)obj;
3195 Index: src/gio/UnixInputStream.d 3243 Index: src/gio/UnixInputStream.d
3196 =================================================================== 3244 ===================================================================
3197 --- src/gio/UnixInputStream.d (revision 843) 3245 --- src/gio/UnixInputStream.d (revision 844)
3198 +++ src/gio/UnixInputStream.d (working copy) 3246 +++ src/gio/UnixInputStream.d (working copy)
3199 @@ -110,7 +110,7 @@ 3247 @@ -110,7 +110,7 @@
3200 this.gUnixInputStream = gUnixInputStream; 3248 this.gUnixInputStream = gUnixInputStream;
3201 } 3249 }
3202 3250
3205 { 3253 {
3206 super.setStruct(obj); 3254 super.setStruct(obj);
3207 gUnixInputStream = cast(GUnixInputStream*)obj; 3255 gUnixInputStream = cast(GUnixInputStream*)obj;
3208 Index: src/gio/File.d 3256 Index: src/gio/File.d
3209 =================================================================== 3257 ===================================================================
3210 --- src/gio/File.d (revision 843) 3258 --- src/gio/File.d (revision 844)
3211 +++ src/gio/File.d (working copy) 3259 +++ src/gio/File.d (working copy)
3212 @@ -212,7 +212,7 @@ 3260 @@ -212,7 +212,7 @@
3213 this.gFile = gFile; 3261 this.gFile = gFile;
3214 } 3262 }
3215 3263
3218 { 3266 {
3219 super.setStruct(obj); 3267 super.setStruct(obj);
3220 gFile = cast(GFile*)obj; 3268 gFile = cast(GFile*)obj;
3221 Index: src/gio/DesktopAppInfo.d 3269 Index: src/gio/DesktopAppInfo.d
3222 =================================================================== 3270 ===================================================================
3223 --- src/gio/DesktopAppInfo.d (revision 843) 3271 --- src/gio/DesktopAppInfo.d (revision 844)
3224 +++ src/gio/DesktopAppInfo.d (working copy) 3272 +++ src/gio/DesktopAppInfo.d (working copy)
3225 @@ -123,7 +123,7 @@ 3273 @@ -123,7 +123,7 @@
3226 this.gDesktopAppInfo = gDesktopAppInfo; 3274 this.gDesktopAppInfo = gDesktopAppInfo;
3227 } 3275 }
3228 3276
3231 { 3279 {
3232 super.setStruct(obj); 3280 super.setStruct(obj);
3233 gDesktopAppInfo = cast(GDesktopAppInfo*)obj; 3281 gDesktopAppInfo = cast(GDesktopAppInfo*)obj;
3234 Index: src/gio/Socket.d 3282 Index: src/gio/Socket.d
3235 =================================================================== 3283 ===================================================================
3236 --- src/gio/Socket.d (revision 843) 3284 --- src/gio/Socket.d (revision 844)
3237 +++ src/gio/Socket.d (working copy) 3285 +++ src/gio/Socket.d (working copy)
3238 @@ -169,7 +169,7 @@ 3286 @@ -169,7 +169,7 @@
3239 this.gSocket = gSocket; 3287 this.gSocket = gSocket;
3240 } 3288 }
3241 3289
3244 { 3292 {
3245 super.setStruct(obj); 3293 super.setStruct(obj);
3246 gSocket = cast(GSocket*)obj; 3294 gSocket = cast(GSocket*)obj;
3247 Index: src/gio/UnixConnection.d 3295 Index: src/gio/UnixConnection.d
3248 =================================================================== 3296 ===================================================================
3249 --- src/gio/UnixConnection.d (revision 843) 3297 --- src/gio/UnixConnection.d (revision 844)
3250 +++ src/gio/UnixConnection.d (working copy) 3298 +++ src/gio/UnixConnection.d (working copy)
3251 @@ -121,7 +121,7 @@ 3299 @@ -121,7 +121,7 @@
3252 this.gUnixConnection = gUnixConnection; 3300 this.gUnixConnection = gUnixConnection;
3253 } 3301 }
3254 3302
3257 { 3305 {
3258 super.setStruct(obj); 3306 super.setStruct(obj);
3259 gUnixConnection = cast(GUnixConnection*)obj; 3307 gUnixConnection = cast(GUnixConnection*)obj;
3260 Index: src/gio/ZlibCompressor.d 3308 Index: src/gio/ZlibCompressor.d
3261 =================================================================== 3309 ===================================================================
3262 --- src/gio/ZlibCompressor.d (revision 843) 3310 --- src/gio/ZlibCompressor.d (revision 844)
3263 +++ src/gio/ZlibCompressor.d (working copy) 3311 +++ src/gio/ZlibCompressor.d (working copy)
3264 @@ -111,7 +111,7 @@ 3312 @@ -111,7 +111,7 @@
3265 this.gZlibCompressor = gZlibCompressor; 3313 this.gZlibCompressor = gZlibCompressor;
3266 } 3314 }
3267 3315
3270 { 3318 {
3271 super.setStruct(obj); 3319 super.setStruct(obj);
3272 gZlibCompressor = cast(GZlibCompressor*)obj; 3320 gZlibCompressor = cast(GZlibCompressor*)obj;
3273 Index: src/gio/BufferedInputStream.d 3321 Index: src/gio/BufferedInputStream.d
3274 =================================================================== 3322 ===================================================================
3275 --- src/gio/BufferedInputStream.d (revision 843) 3323 --- src/gio/BufferedInputStream.d (revision 844)
3276 +++ src/gio/BufferedInputStream.d (working copy) 3324 +++ src/gio/BufferedInputStream.d (working copy)
3277 @@ -128,7 +128,7 @@ 3325 @@ -128,7 +128,7 @@
3278 this.gBufferedInputStream = gBufferedInputStream; 3326 this.gBufferedInputStream = gBufferedInputStream;
3279 } 3327 }
3280 3328
3283 { 3331 {
3284 super.setStruct(obj); 3332 super.setStruct(obj);
3285 gBufferedInputStream = cast(GBufferedInputStream*)obj; 3333 gBufferedInputStream = cast(GBufferedInputStream*)obj;
3286 Index: src/gio/BufferedOutputStream.d 3334 Index: src/gio/BufferedOutputStream.d
3287 =================================================================== 3335 ===================================================================
3288 --- src/gio/BufferedOutputStream.d (revision 843) 3336 --- src/gio/BufferedOutputStream.d (revision 844)
3289 +++ src/gio/BufferedOutputStream.d (working copy) 3337 +++ src/gio/BufferedOutputStream.d (working copy)
3290 @@ -118,7 +118,7 @@ 3338 @@ -118,7 +118,7 @@
3291 this.gBufferedOutputStream = gBufferedOutputStream; 3339 this.gBufferedOutputStream = gBufferedOutputStream;
3292 } 3340 }
3293 3341
3296 { 3344 {
3297 super.setStruct(obj); 3345 super.setStruct(obj);
3298 gBufferedOutputStream = cast(GBufferedOutputStream*)obj; 3346 gBufferedOutputStream = cast(GBufferedOutputStream*)obj;
3299 Index: src/gio/ThemedIcon.d 3347 Index: src/gio/ThemedIcon.d
3300 =================================================================== 3348 ===================================================================
3301 --- src/gio/ThemedIcon.d (revision 843) 3349 --- src/gio/ThemedIcon.d (revision 844)
3302 +++ src/gio/ThemedIcon.d (working copy) 3350 +++ src/gio/ThemedIcon.d (working copy)
3303 @@ -119,7 +119,7 @@ 3351 @@ -119,7 +119,7 @@
3304 this.gThemedIcon = gThemedIcon; 3352 this.gThemedIcon = gThemedIcon;
3305 } 3353 }
3306 3354
3309 { 3357 {
3310 super.setStruct(obj); 3358 super.setStruct(obj);
3311 gThemedIcon = cast(GThemedIcon*)obj; 3359 gThemedIcon = cast(GThemedIcon*)obj;
3312 Index: src/gio/UnixOutputStream.d 3360 Index: src/gio/UnixOutputStream.d
3313 =================================================================== 3361 ===================================================================
3314 --- src/gio/UnixOutputStream.d (revision 843) 3362 --- src/gio/UnixOutputStream.d (revision 844)
3315 +++ src/gio/UnixOutputStream.d (working copy) 3363 +++ src/gio/UnixOutputStream.d (working copy)
3316 @@ -110,7 +110,7 @@ 3364 @@ -110,7 +110,7 @@
3317 this.gUnixOutputStream = gUnixOutputStream; 3365 this.gUnixOutputStream = gUnixOutputStream;
3318 } 3366 }
3319 3367
3322 { 3370 {
3323 super.setStruct(obj); 3371 super.setStruct(obj);
3324 gUnixOutputStream = cast(GUnixOutputStream*)obj; 3372 gUnixOutputStream = cast(GUnixOutputStream*)obj;
3325 Index: src/gio/IOStream.d 3373 Index: src/gio/IOStream.d
3326 =================================================================== 3374 ===================================================================
3327 --- src/gio/IOStream.d (revision 843) 3375 --- src/gio/IOStream.d (revision 844)
3328 +++ src/gio/IOStream.d (working copy) 3376 +++ src/gio/IOStream.d (working copy)
3329 @@ -140,7 +140,7 @@ 3377 @@ -140,7 +140,7 @@
3330 this.gIOStream = gIOStream; 3378 this.gIOStream = gIOStream;
3331 } 3379 }
3332 3380
3335 { 3383 {
3336 super.setStruct(obj); 3384 super.setStruct(obj);
3337 gIOStream = cast(GIOStream*)obj; 3385 gIOStream = cast(GIOStream*)obj;
3338 Index: src/gio/FileIOStream.d 3386 Index: src/gio/FileIOStream.d
3339 =================================================================== 3387 ===================================================================
3340 --- src/gio/FileIOStream.d (revision 843) 3388 --- src/gio/FileIOStream.d (revision 844)
3341 +++ src/gio/FileIOStream.d (working copy) 3389 +++ src/gio/FileIOStream.d (working copy)
3342 @@ -140,7 +140,7 @@ 3390 @@ -140,7 +140,7 @@
3343 this.gFileIOStream = gFileIOStream; 3391 this.gFileIOStream = gFileIOStream;
3344 } 3392 }
3345 3393
3348 { 3396 {
3349 super.setStruct(obj); 3397 super.setStruct(obj);
3350 gFileIOStream = cast(GFileIOStream*)obj; 3398 gFileIOStream = cast(GFileIOStream*)obj;
3351 Index: src/gio/ZlibDecompressor.d 3399 Index: src/gio/ZlibDecompressor.d
3352 =================================================================== 3400 ===================================================================
3353 --- src/gio/ZlibDecompressor.d (revision 843) 3401 --- src/gio/ZlibDecompressor.d (revision 844)
3354 +++ src/gio/ZlibDecompressor.d (working copy) 3402 +++ src/gio/ZlibDecompressor.d (working copy)
3355 @@ -111,7 +111,7 @@ 3403 @@ -111,7 +111,7 @@
3356 this.gZlibDecompressor = gZlibDecompressor; 3404 this.gZlibDecompressor = gZlibDecompressor;
3357 } 3405 }
3358 3406
3361 { 3409 {
3362 super.setStruct(obj); 3410 super.setStruct(obj);
3363 gZlibDecompressor = cast(GZlibDecompressor*)obj; 3411 gZlibDecompressor = cast(GZlibDecompressor*)obj;
3364 Index: src/gio/SocketClient.d 3412 Index: src/gio/SocketClient.d
3365 =================================================================== 3413 ===================================================================
3366 --- src/gio/SocketClient.d (revision 843) 3414 --- src/gio/SocketClient.d (revision 844)
3367 +++ src/gio/SocketClient.d (working copy) 3415 +++ src/gio/SocketClient.d (working copy)
3368 @@ -133,7 +133,7 @@ 3416 @@ -133,7 +133,7 @@
3369 this.gSocketClient = gSocketClient; 3417 this.gSocketClient = gSocketClient;
3370 } 3418 }
3371 3419
3374 { 3422 {
3375 super.setStruct(obj); 3423 super.setStruct(obj);
3376 gSocketClient = cast(GSocketClient*)obj; 3424 gSocketClient = cast(GSocketClient*)obj;
3377 Index: src/gio/UnixFDList.d 3425 Index: src/gio/UnixFDList.d
3378 =================================================================== 3426 ===================================================================
3379 --- src/gio/UnixFDList.d (revision 843) 3427 --- src/gio/UnixFDList.d (revision 844)
3380 +++ src/gio/UnixFDList.d (working copy) 3428 +++ src/gio/UnixFDList.d (working copy)
3381 @@ -113,7 +113,7 @@ 3429 @@ -113,7 +113,7 @@
3382 this.gUnixFDList = gUnixFDList; 3430 this.gUnixFDList = gUnixFDList;
3383 } 3431 }
3384 3432
3387 { 3435 {
3388 super.setStruct(obj); 3436 super.setStruct(obj);
3389 gUnixFDList = cast(GUnixFDList*)obj; 3437 gUnixFDList = cast(GUnixFDList*)obj;
3390 Index: src/gio/FileInfo.d 3438 Index: src/gio/FileInfo.d
3391 =================================================================== 3439 ===================================================================
3392 --- src/gio/FileInfo.d (revision 843) 3440 --- src/gio/FileInfo.d (revision 844)
3393 +++ src/gio/FileInfo.d (working copy) 3441 +++ src/gio/FileInfo.d (working copy)
3394 @@ -141,7 +141,7 @@ 3442 @@ -141,7 +141,7 @@
3395 this.gFileInfo = gFileInfo; 3443 this.gFileInfo = gFileInfo;
3396 } 3444 }
3397 3445
3400 { 3448 {
3401 super.setStruct(obj); 3449 super.setStruct(obj);
3402 gFileInfo = cast(GFileInfo*)obj; 3450 gFileInfo = cast(GFileInfo*)obj;
3403 Index: srcsv/gsv/SourceLanguageManager.d 3451 Index: srcsv/gsv/SourceLanguageManager.d
3404 =================================================================== 3452 ===================================================================
3405 --- srcsv/gsv/SourceLanguageManager.d (revision 843) 3453 --- srcsv/gsv/SourceLanguageManager.d (revision 844)
3406 +++ srcsv/gsv/SourceLanguageManager.d (working copy) 3454 +++ srcsv/gsv/SourceLanguageManager.d (working copy)
3407 @@ -119,7 +119,7 @@ 3455 @@ -119,7 +119,7 @@
3408 this.gtkSourceLanguageManager = gtkSourceLanguageManager; 3456 this.gtkSourceLanguageManager = gtkSourceLanguageManager;
3409 } 3457 }
3410 3458
3413 { 3461 {
3414 super.setStruct(obj); 3462 super.setStruct(obj);
3415 gtkSourceLanguageManager = cast(GtkSourceLanguageManager*)obj; 3463 gtkSourceLanguageManager = cast(GtkSourceLanguageManager*)obj;
3416 Index: srcsv/gsv/SourceCompletionContext.d 3464 Index: srcsv/gsv/SourceCompletionContext.d
3417 =================================================================== 3465 ===================================================================
3418 --- srcsv/gsv/SourceCompletionContext.d (revision 843) 3466 --- srcsv/gsv/SourceCompletionContext.d (revision 844)
3419 +++ srcsv/gsv/SourceCompletionContext.d (working copy) 3467 +++ srcsv/gsv/SourceCompletionContext.d (working copy)
3420 @@ -118,7 +118,7 @@ 3468 @@ -118,7 +118,7 @@
3421 this.gtkSourceCompletionContext = gtkSourceCompletionContext; 3469 this.gtkSourceCompletionContext = gtkSourceCompletionContext;
3422 } 3470 }
3423 3471
3426 { 3474 {
3427 super.setStruct(obj); 3475 super.setStruct(obj);
3428 gtkSourceCompletionContext = cast(GtkSourceCompletionContext*)obj; 3476 gtkSourceCompletionContext = cast(GtkSourceCompletionContext*)obj;
3429 Index: srcsv/gsv/SourceStyleSchemeManager.d 3477 Index: srcsv/gsv/SourceStyleSchemeManager.d
3430 =================================================================== 3478 ===================================================================
3431 --- srcsv/gsv/SourceStyleSchemeManager.d (revision 843) 3479 --- srcsv/gsv/SourceStyleSchemeManager.d (revision 844)
3432 +++ srcsv/gsv/SourceStyleSchemeManager.d (working copy) 3480 +++ srcsv/gsv/SourceStyleSchemeManager.d (working copy)
3433 @@ -112,7 +112,7 @@ 3481 @@ -112,7 +112,7 @@
3434 this.gtkSourceStyleSchemeManager = gtkSourceStyleSchemeManager; 3482 this.gtkSourceStyleSchemeManager = gtkSourceStyleSchemeManager;
3435 } 3483 }
3436 3484
3439 { 3487 {
3440 super.setStruct(obj); 3488 super.setStruct(obj);
3441 gtkSourceStyleSchemeManager = cast(GtkSourceStyleSchemeManager*)obj; 3489 gtkSourceStyleSchemeManager = cast(GtkSourceStyleSchemeManager*)obj;
3442 Index: srcsv/gsv/SourceLanguage.d 3490 Index: srcsv/gsv/SourceLanguage.d
3443 =================================================================== 3491 ===================================================================
3444 --- srcsv/gsv/SourceLanguage.d (revision 843) 3492 --- srcsv/gsv/SourceLanguage.d (revision 844)
3445 +++ srcsv/gsv/SourceLanguage.d (working copy) 3493 +++ srcsv/gsv/SourceLanguage.d (working copy)
3446 @@ -110,7 +110,7 @@ 3494 @@ -110,7 +110,7 @@
3447 this.gtkSourceLanguage = gtkSourceLanguage; 3495 this.gtkSourceLanguage = gtkSourceLanguage;
3448 } 3496 }
3449 3497
3452 { 3500 {
3453 super.setStruct(obj); 3501 super.setStruct(obj);
3454 gtkSourceLanguage = cast(GtkSourceLanguage*)obj; 3502 gtkSourceLanguage = cast(GtkSourceLanguage*)obj;
3455 Index: srcsv/gsv/SourceStyleScheme.d 3503 Index: srcsv/gsv/SourceStyleScheme.d
3456 =================================================================== 3504 ===================================================================
3457 --- srcsv/gsv/SourceStyleScheme.d (revision 843) 3505 --- srcsv/gsv/SourceStyleScheme.d (revision 844)
3458 +++ srcsv/gsv/SourceStyleScheme.d (working copy) 3506 +++ srcsv/gsv/SourceStyleScheme.d (working copy)
3459 @@ -116,7 +116,7 @@ 3507 @@ -116,7 +116,7 @@
3460 this.gtkSourceStyleScheme = gtkSourceStyleScheme; 3508 this.gtkSourceStyleScheme = gtkSourceStyleScheme;
3461 } 3509 }
3462 3510
3465 { 3513 {
3466 super.setStruct(obj); 3514 super.setStruct(obj);
3467 gtkSourceStyleScheme = cast(GtkSourceStyleScheme*)obj; 3515 gtkSourceStyleScheme = cast(GtkSourceStyleScheme*)obj;
3468 Index: srcsv/gsv/SourceCompletionInfo.d 3516 Index: srcsv/gsv/SourceCompletionInfo.d
3469 =================================================================== 3517 ===================================================================
3470 --- srcsv/gsv/SourceCompletionInfo.d (revision 843) 3518 --- srcsv/gsv/SourceCompletionInfo.d (revision 844)
3471 +++ srcsv/gsv/SourceCompletionInfo.d (working copy) 3519 +++ srcsv/gsv/SourceCompletionInfo.d (working copy)
3472 @@ -117,7 +117,7 @@ 3520 @@ -117,7 +117,7 @@
3473 this.gtkSourceCompletionInfo = gtkSourceCompletionInfo; 3521 this.gtkSourceCompletionInfo = gtkSourceCompletionInfo;
3474 } 3522 }
3475 3523
3478 { 3526 {
3479 super.setStruct(obj); 3527 super.setStruct(obj);
3480 gtkSourceCompletionInfo = cast(GtkSourceCompletionInfo*)obj; 3528 gtkSourceCompletionInfo = cast(GtkSourceCompletionInfo*)obj;
3481 Index: srcsv/gsv/SourceCompletionItem.d 3529 Index: srcsv/gsv/SourceCompletionItem.d
3482 =================================================================== 3530 ===================================================================
3483 --- srcsv/gsv/SourceCompletionItem.d (revision 843) 3531 --- srcsv/gsv/SourceCompletionItem.d (revision 844)
3484 +++ srcsv/gsv/SourceCompletionItem.d (working copy) 3532 +++ srcsv/gsv/SourceCompletionItem.d (working copy)
3485 @@ -114,7 +114,7 @@ 3533 @@ -114,7 +114,7 @@
3486 this.gtkSourceCompletionItem = gtkSourceCompletionItem; 3534 this.gtkSourceCompletionItem = gtkSourceCompletionItem;
3487 } 3535 }
3488 3536
3491 { 3539 {
3492 super.setStruct(obj); 3540 super.setStruct(obj);
3493 gtkSourceCompletionItem = cast(GtkSourceCompletionItem*)obj; 3541 gtkSourceCompletionItem = cast(GtkSourceCompletionItem*)obj;
3494 Index: srcsv/gsv/SourceMark.d 3542 Index: srcsv/gsv/SourceMark.d
3495 =================================================================== 3543 ===================================================================
3496 --- srcsv/gsv/SourceMark.d (revision 843) 3544 --- srcsv/gsv/SourceMark.d (revision 844)
3497 +++ srcsv/gsv/SourceMark.d (working copy) 3545 +++ srcsv/gsv/SourceMark.d (working copy)
3498 @@ -118,7 +118,7 @@ 3546 @@ -118,7 +118,7 @@
3499 this.gtkSourceMark = gtkSourceMark; 3547 this.gtkSourceMark = gtkSourceMark;
3500 } 3548 }
3501 3549
3504 { 3552 {
3505 super.setStruct(obj); 3553 super.setStruct(obj);
3506 gtkSourceMark = cast(GtkSourceMark*)obj; 3554 gtkSourceMark = cast(GtkSourceMark*)obj;
3507 Index: srcsv/gsv/SourceStyle.d 3555 Index: srcsv/gsv/SourceStyle.d
3508 =================================================================== 3556 ===================================================================
3509 --- srcsv/gsv/SourceStyle.d (revision 843) 3557 --- srcsv/gsv/SourceStyle.d (revision 844)
3510 +++ srcsv/gsv/SourceStyle.d (working copy) 3558 +++ srcsv/gsv/SourceStyle.d (working copy)
3511 @@ -107,7 +107,7 @@ 3559 @@ -107,7 +107,7 @@
3512 this.gtkSourceStyle = gtkSourceStyle; 3560 this.gtkSourceStyle = gtkSourceStyle;
3513 } 3561 }
3514 3562
3517 { 3565 {
3518 super.setStruct(obj); 3566 super.setStruct(obj);
3519 gtkSourceStyle = cast(GtkSourceStyle*)obj; 3567 gtkSourceStyle = cast(GtkSourceStyle*)obj;
3520 Index: srcsv/gsv/SourceBuffer.d 3568 Index: srcsv/gsv/SourceBuffer.d
3521 =================================================================== 3569 ===================================================================
3522 --- srcsv/gsv/SourceBuffer.d (revision 843) 3570 --- srcsv/gsv/SourceBuffer.d (revision 844)
3523 +++ srcsv/gsv/SourceBuffer.d (working copy) 3571 +++ srcsv/gsv/SourceBuffer.d (working copy)
3524 @@ -135,7 +135,7 @@ 3572 @@ -135,7 +135,7 @@
3525 this.gtkSourceBuffer = gtkSourceBuffer; 3573 this.gtkSourceBuffer = gtkSourceBuffer;
3526 } 3574 }
3527 3575
3530 { 3578 {
3531 super.setStruct(obj); 3579 super.setStruct(obj);
3532 gtkSourceBuffer = cast(GtkSourceBuffer*)obj; 3580 gtkSourceBuffer = cast(GtkSourceBuffer*)obj;
3533 Index: srcsv/gsv/SourceCompletion.d 3581 Index: srcsv/gsv/SourceCompletion.d
3534 =================================================================== 3582 ===================================================================
3535 --- srcsv/gsv/SourceCompletion.d (revision 843) 3583 --- srcsv/gsv/SourceCompletion.d (revision 844)
3536 +++ srcsv/gsv/SourceCompletion.d (working copy) 3584 +++ srcsv/gsv/SourceCompletion.d (working copy)
3537 @@ -128,7 +128,7 @@ 3585 @@ -128,7 +128,7 @@
3538 this.gtkSourceCompletion = gtkSourceCompletion; 3586 this.gtkSourceCompletion = gtkSourceCompletion;
3539 } 3587 }
3540 3588
3543 { 3591 {
3544 super.setStruct(obj); 3592 super.setStruct(obj);
3545 gtkSourceCompletion = cast(GtkSourceCompletion*)obj; 3593 gtkSourceCompletion = cast(GtkSourceCompletion*)obj;
3546 Index: srcsv/gsv/SourceGutter.d 3594 Index: srcsv/gsv/SourceGutter.d
3547 =================================================================== 3595 ===================================================================
3548 --- srcsv/gsv/SourceGutter.d (revision 843) 3596 --- srcsv/gsv/SourceGutter.d (revision 844)
3549 +++ srcsv/gsv/SourceGutter.d (working copy) 3597 +++ srcsv/gsv/SourceGutter.d (working copy)
3550 @@ -132,7 +132,7 @@ 3598 @@ -132,7 +132,7 @@
3551 this.gtkSourceGutter = gtkSourceGutter; 3599 this.gtkSourceGutter = gtkSourceGutter;
3552 } 3600 }
3553 3601
3556 { 3604 {
3557 super.setStruct(obj); 3605 super.setStruct(obj);
3558 gtkSourceGutter = cast(GtkSourceGutter*)obj; 3606 gtkSourceGutter = cast(GtkSourceGutter*)obj;
3559 Index: srcsv/gsv/SourceView.d 3607 Index: srcsv/gsv/SourceView.d
3560 =================================================================== 3608 ===================================================================
3561 --- srcsv/gsv/SourceView.d (revision 843) 3609 --- srcsv/gsv/SourceView.d (revision 844)
3562 +++ srcsv/gsv/SourceView.d (working copy) 3610 +++ srcsv/gsv/SourceView.d (working copy)
3563 @@ -128,7 +128,7 @@ 3611 @@ -128,7 +128,7 @@
3564 this.gtkSourceView = gtkSourceView; 3612 this.gtkSourceView = gtkSourceView;
3565 } 3613 }
3566 3614
3569 { 3617 {
3570 super.setStruct(obj); 3618 super.setStruct(obj);
3571 gtkSourceView = cast(GtkSourceView*)obj; 3619 gtkSourceView = cast(GtkSourceView*)obj;
3572 Index: srcsv/gsv/SourcePrintCompositor.d 3620 Index: srcsv/gsv/SourcePrintCompositor.d
3573 =================================================================== 3621 ===================================================================
3574 --- srcsv/gsv/SourcePrintCompositor.d (revision 843) 3622 --- srcsv/gsv/SourcePrintCompositor.d (revision 844)
3575 +++ srcsv/gsv/SourcePrintCompositor.d (working copy) 3623 +++ srcsv/gsv/SourcePrintCompositor.d (working copy)
3576 @@ -126,7 +126,7 @@ 3624 @@ -126,7 +126,7 @@
3577 this.gtkSourcePrintCompositor = gtkSourcePrintCompositor; 3625 this.gtkSourcePrintCompositor = gtkSourcePrintCompositor;
3578 } 3626 }
3579 3627
3582 { 3630 {
3583 super.setStruct(obj); 3631 super.setStruct(obj);
3584 gtkSourcePrintCompositor = cast(GtkSourcePrintCompositor*)obj; 3632 gtkSourcePrintCompositor = cast(GtkSourcePrintCompositor*)obj;
3585 Index: srcgstreamer/gstreamer/Plugin.d 3633 Index: srcgstreamer/gstreamer/Plugin.d
3586 =================================================================== 3634 ===================================================================
3587 --- srcgstreamer/gstreamer/Plugin.d (revision 843) 3635 --- srcgstreamer/gstreamer/Plugin.d (revision 844)
3588 +++ srcgstreamer/gstreamer/Plugin.d (working copy) 3636 +++ srcgstreamer/gstreamer/Plugin.d (working copy)
3589 @@ -135,7 +135,7 @@ 3637 @@ -135,7 +135,7 @@
3590 this.gstPlugin = gstPlugin; 3638 this.gstPlugin = gstPlugin;
3591 } 3639 }
3592 3640
3595 { 3643 {
3596 super.setStruct(obj); 3644 super.setStruct(obj);
3597 gstPlugin = cast(GstPlugin*)obj; 3645 gstPlugin = cast(GstPlugin*)obj;
3598 Index: srcgstreamer/gstreamer/Task.d 3646 Index: srcgstreamer/gstreamer/Task.d
3599 =================================================================== 3647 ===================================================================
3600 --- srcgstreamer/gstreamer/Task.d (revision 843) 3648 --- srcgstreamer/gstreamer/Task.d (revision 844)
3601 +++ srcgstreamer/gstreamer/Task.d (working copy) 3649 +++ srcgstreamer/gstreamer/Task.d (working copy)
3602 @@ -131,7 +131,7 @@ 3650 @@ -131,7 +131,7 @@
3603 this.gstTask = gstTask; 3651 this.gstTask = gstTask;
3604 } 3652 }
3605 3653
3608 { 3656 {
3609 super.setStruct(obj); 3657 super.setStruct(obj);
3610 gstTask = cast(GstTask*)obj; 3658 gstTask = cast(GstTask*)obj;
3611 Index: srcgstreamer/gstreamer/Pad.d 3659 Index: srcgstreamer/gstreamer/Pad.d
3612 =================================================================== 3660 ===================================================================
3613 --- srcgstreamer/gstreamer/Pad.d (revision 843) 3661 --- srcgstreamer/gstreamer/Pad.d (revision 844)
3614 +++ srcgstreamer/gstreamer/Pad.d (working copy) 3662 +++ srcgstreamer/gstreamer/Pad.d (working copy)
3615 @@ -161,7 +161,7 @@ 3663 @@ -161,7 +161,7 @@
3616 this.gstPad = gstPad; 3664 this.gstPad = gstPad;
3617 } 3665 }
3618 3666
3621 { 3669 {
3622 super.setStruct(obj); 3670 super.setStruct(obj);
3623 gstPad = cast(GstPad*)obj; 3671 gstPad = cast(GstPad*)obj;
3624 Index: srcgstreamer/gstreamer/Pipeline.d 3672 Index: srcgstreamer/gstreamer/Pipeline.d
3625 =================================================================== 3673 ===================================================================
3626 --- srcgstreamer/gstreamer/Pipeline.d (revision 843) 3674 --- srcgstreamer/gstreamer/Pipeline.d (revision 844)
3627 +++ srcgstreamer/gstreamer/Pipeline.d (working copy) 3675 +++ srcgstreamer/gstreamer/Pipeline.d (working copy)
3628 @@ -159,7 +159,7 @@ 3676 @@ -159,7 +159,7 @@
3629 this.gstPipeline = gstPipeline; 3677 this.gstPipeline = gstPipeline;
3630 } 3678 }
3631 3679
3634 { 3682 {
3635 super.setStruct(obj); 3683 super.setStruct(obj);
3636 gstPipeline = cast(GstPipeline*)obj; 3684 gstPipeline = cast(GstPipeline*)obj;
3637 Index: srcgstreamer/gstreamer/Bin.d 3685 Index: srcgstreamer/gstreamer/Bin.d
3638 =================================================================== 3686 ===================================================================
3639 --- srcgstreamer/gstreamer/Bin.d (revision 843) 3687 --- srcgstreamer/gstreamer/Bin.d (revision 844)
3640 +++ srcgstreamer/gstreamer/Bin.d (working copy) 3688 +++ srcgstreamer/gstreamer/Bin.d (working copy)
3641 @@ -200,7 +200,7 @@ 3689 @@ -200,7 +200,7 @@
3642 this.gstBin = gstBin; 3690 this.gstBin = gstBin;
3643 } 3691 }
3644 3692
3647 { 3695 {
3648 super.setStruct(obj); 3696 super.setStruct(obj);
3649 gstBin = cast(GstBin*)obj; 3697 gstBin = cast(GstBin*)obj;
3650 Index: srcgstreamer/gstreamer/GhostPad.d 3698 Index: srcgstreamer/gstreamer/GhostPad.d
3651 =================================================================== 3699 ===================================================================
3652 --- srcgstreamer/gstreamer/GhostPad.d (revision 843) 3700 --- srcgstreamer/gstreamer/GhostPad.d (revision 844)
3653 +++ srcgstreamer/gstreamer/GhostPad.d (working copy) 3701 +++ srcgstreamer/gstreamer/GhostPad.d (working copy)
3654 @@ -123,7 +123,7 @@ 3702 @@ -123,7 +123,7 @@
3655 this.gstGhostPad = gstGhostPad; 3703 this.gstGhostPad = gstGhostPad;
3656 } 3704 }
3657 3705
3660 { 3708 {
3661 super.setStruct(obj); 3709 super.setStruct(obj);
3662 gstGhostPad = cast(GstGhostPad*)obj; 3710 gstGhostPad = cast(GstGhostPad*)obj;
3663 Index: srcgstreamer/gstreamer/PluginFeature.d 3711 Index: srcgstreamer/gstreamer/PluginFeature.d
3664 =================================================================== 3712 ===================================================================
3665 --- srcgstreamer/gstreamer/PluginFeature.d (revision 843) 3713 --- srcgstreamer/gstreamer/PluginFeature.d (revision 844)
3666 +++ srcgstreamer/gstreamer/PluginFeature.d (working copy) 3714 +++ srcgstreamer/gstreamer/PluginFeature.d (working copy)
3667 @@ -113,7 +113,7 @@ 3715 @@ -113,7 +113,7 @@
3668 this.gstPluginFeature = gstPluginFeature; 3716 this.gstPluginFeature = gstPluginFeature;
3669 } 3717 }
3670 3718
3673 { 3721 {
3674 super.setStruct(obj); 3722 super.setStruct(obj);
3675 gstPluginFeature = cast(GstPluginFeature*)obj; 3723 gstPluginFeature = cast(GstPluginFeature*)obj;
3676 Index: srcgstreamer/gstreamer/TypeFindFactory.d 3724 Index: srcgstreamer/gstreamer/TypeFindFactory.d
3677 =================================================================== 3725 ===================================================================
3678 --- srcgstreamer/gstreamer/TypeFindFactory.d (revision 843) 3726 --- srcgstreamer/gstreamer/TypeFindFactory.d (revision 844)
3679 +++ srcgstreamer/gstreamer/TypeFindFactory.d (working copy) 3727 +++ srcgstreamer/gstreamer/TypeFindFactory.d (working copy)
3680 @@ -165,7 +165,7 @@ 3728 @@ -165,7 +165,7 @@
3681 this.gstTypeFindFactory = gstTypeFindFactory; 3729 this.gstTypeFindFactory = gstTypeFindFactory;
3682 } 3730 }
3683 3731
3686 { 3734 {
3687 super.setStruct(obj); 3735 super.setStruct(obj);
3688 gstTypeFindFactory = cast(GstTypeFindFactory*)obj; 3736 gstTypeFindFactory = cast(GstTypeFindFactory*)obj;
3689 Index: srcgstreamer/gstreamer/ObjectGst.d 3737 Index: srcgstreamer/gstreamer/ObjectGst.d
3690 =================================================================== 3738 ===================================================================
3691 --- srcgstreamer/gstreamer/ObjectGst.d (revision 843) 3739 --- srcgstreamer/gstreamer/ObjectGst.d (revision 844)
3692 +++ srcgstreamer/gstreamer/ObjectGst.d (working copy) 3740 +++ srcgstreamer/gstreamer/ObjectGst.d (working copy)
3693 @@ -164,7 +164,7 @@ 3741 @@ -164,7 +164,7 @@
3694 this.gstObject = gstObject; 3742 this.gstObject = gstObject;
3695 } 3743 }
3696 3744
3699 { 3747 {
3700 super.setStruct(obj); 3748 super.setStruct(obj);
3701 gstObject = cast(GstObject*)obj; 3749 gstObject = cast(GstObject*)obj;
3702 Index: srcgstreamer/gstreamer/Bus.d 3750 Index: srcgstreamer/gstreamer/Bus.d
3703 =================================================================== 3751 ===================================================================
3704 --- srcgstreamer/gstreamer/Bus.d (revision 843) 3752 --- srcgstreamer/gstreamer/Bus.d (revision 844)
3705 +++ srcgstreamer/gstreamer/Bus.d (working copy) 3753 +++ srcgstreamer/gstreamer/Bus.d (working copy)
3706 @@ -149,7 +149,7 @@ 3754 @@ -149,7 +149,7 @@
3707 this.gstBus = gstBus; 3755 this.gstBus = gstBus;
3708 } 3756 }
3709 3757
3712 { 3760 {
3713 super.setStruct(obj); 3761 super.setStruct(obj);
3714 gstBus = cast(GstBus*)obj; 3762 gstBus = cast(GstBus*)obj;
3715 Index: srcgstreamer/gstreamer/Clock.d 3763 Index: srcgstreamer/gstreamer/Clock.d
3716 =================================================================== 3764 ===================================================================
3717 --- srcgstreamer/gstreamer/Clock.d (revision 843) 3765 --- srcgstreamer/gstreamer/Clock.d (revision 844)
3718 +++ srcgstreamer/gstreamer/Clock.d (working copy) 3766 +++ srcgstreamer/gstreamer/Clock.d (working copy)
3719 @@ -168,7 +168,7 @@ 3767 @@ -168,7 +168,7 @@
3720 this.gstClock = gstClock; 3768 this.gstClock = gstClock;
3721 } 3769 }
3722 3770
3725 { 3773 {
3726 super.setStruct(obj); 3774 super.setStruct(obj);
3727 gstClock = cast(GstClock*)obj; 3775 gstClock = cast(GstClock*)obj;
3728 Index: srcgstreamer/gstreamer/IndexFactory.d 3776 Index: srcgstreamer/gstreamer/IndexFactory.d
3729 =================================================================== 3777 ===================================================================
3730 --- srcgstreamer/gstreamer/IndexFactory.d (revision 843) 3778 --- srcgstreamer/gstreamer/IndexFactory.d (revision 844)
3731 +++ srcgstreamer/gstreamer/IndexFactory.d (working copy) 3779 +++ srcgstreamer/gstreamer/IndexFactory.d (working copy)
3732 @@ -112,7 +112,7 @@ 3780 @@ -112,7 +112,7 @@
3733 this.gstIndexFactory = gstIndexFactory; 3781 this.gstIndexFactory = gstIndexFactory;
3734 } 3782 }
3735 3783
3736 - protected void setStruct(GObject* obj) 3784 - protected void setStruct(GObject* obj)
3737 + protected override void setStruct(GObject* obj) 3785 + protected override void setStruct(GObject* obj)
3738 { 3786 {
3739 super.setStruct(obj); 3787 super.setStruct(obj);
3740 gstIndexFactory = cast(GstIndexFactory*)obj; 3788 gstIndexFactory = cast(GstIndexFactory*)obj;
3789 Index: srcgstreamer/gstreamer/SystemClock.d
3790 ===================================================================
3791 --- srcgstreamer/gstreamer/SystemClock.d (revision 844)
3792 +++ srcgstreamer/gstreamer/SystemClock.d (working copy)
3793 @@ -118,7 +118,7 @@
3794 this.gstSystemClock = gstSystemClock;
3795 }
3796
3797 - protected void setStruct(GObject* obj)
3798 + protected override void setStruct(GObject* obj)
3799 {
3800 super.setStruct(obj);
3801 gstSystemClock = cast(GstSystemClock*)obj;
3741 Index: srcgstreamer/gstreamer/PadTemplate.d 3802 Index: srcgstreamer/gstreamer/PadTemplate.d
3742 =================================================================== 3803 ===================================================================
3743 --- srcgstreamer/gstreamer/PadTemplate.d (revision 843) 3804 --- srcgstreamer/gstreamer/PadTemplate.d (revision 844)
3744 +++ srcgstreamer/gstreamer/PadTemplate.d (working copy) 3805 +++ srcgstreamer/gstreamer/PadTemplate.d (working copy)
3745 @@ -167,7 +167,7 @@ 3806 @@ -167,7 +167,7 @@
3746 this.gstPadTemplate = gstPadTemplate; 3807 this.gstPadTemplate = gstPadTemplate;
3747 } 3808 }
3748 3809
3749 - protected void setStruct(GObject* obj) 3810 - protected void setStruct(GObject* obj)
3750 + protected override void setStruct(GObject* obj) 3811 + protected override void setStruct(GObject* obj)
3751 { 3812 {
3752 super.setStruct(obj); 3813 super.setStruct(obj);
3753 gstPadTemplate = cast(GstPadTemplate*)obj; 3814 gstPadTemplate = cast(GstPadTemplate*)obj;
3754 Index: srcgstreamer/gstreamer/SystemClock.d
3755 ===================================================================
3756 --- srcgstreamer/gstreamer/SystemClock.d (revision 843)
3757 +++ srcgstreamer/gstreamer/SystemClock.d (working copy)
3758 @@ -118,7 +118,7 @@
3759 this.gstSystemClock = gstSystemClock;
3760 }
3761
3762 - protected void setStruct(GObject* obj)
3763 + protected override void setStruct(GObject* obj)
3764 {
3765 super.setStruct(obj);
3766 gstSystemClock = cast(GstSystemClock*)obj;
3767 Index: srcgstreamer/gstreamer/Index.d 3815 Index: srcgstreamer/gstreamer/Index.d
3768 =================================================================== 3816 ===================================================================
3769 --- srcgstreamer/gstreamer/Index.d (revision 843) 3817 --- srcgstreamer/gstreamer/Index.d (revision 844)
3770 +++ srcgstreamer/gstreamer/Index.d (working copy) 3818 +++ srcgstreamer/gstreamer/Index.d (working copy)
3771 @@ -115,7 +115,7 @@ 3819 @@ -115,7 +115,7 @@
3772 this.gstIndex = gstIndex; 3820 this.gstIndex = gstIndex;
3773 } 3821 }
3774 3822
3777 { 3825 {
3778 super.setStruct(obj); 3826 super.setStruct(obj);
3779 gstIndex = cast(GstIndex*)obj; 3827 gstIndex = cast(GstIndex*)obj;
3780 Index: srcgstreamer/gstreamer/Registry.d 3828 Index: srcgstreamer/gstreamer/Registry.d
3781 =================================================================== 3829 ===================================================================
3782 --- srcgstreamer/gstreamer/Registry.d (revision 843) 3830 --- srcgstreamer/gstreamer/Registry.d (revision 844)
3783 +++ srcgstreamer/gstreamer/Registry.d (working copy) 3831 +++ srcgstreamer/gstreamer/Registry.d (working copy)
3784 @@ -160,7 +160,7 @@ 3832 @@ -160,7 +160,7 @@
3785 this.gstRegistry = gstRegistry; 3833 this.gstRegistry = gstRegistry;
3786 } 3834 }
3787 3835
3790 { 3838 {
3791 super.setStruct(obj); 3839 super.setStruct(obj);
3792 gstRegistry = cast(GstRegistry*)obj; 3840 gstRegistry = cast(GstRegistry*)obj;
3793 Index: srcgstreamer/gstreamer/ElementFactory.d 3841 Index: srcgstreamer/gstreamer/ElementFactory.d
3794 =================================================================== 3842 ===================================================================
3795 --- srcgstreamer/gstreamer/ElementFactory.d (revision 843) 3843 --- srcgstreamer/gstreamer/ElementFactory.d (revision 844)
3796 +++ srcgstreamer/gstreamer/ElementFactory.d (working copy) 3844 +++ srcgstreamer/gstreamer/ElementFactory.d (working copy)
3797 @@ -139,7 +139,7 @@ 3845 @@ -139,7 +139,7 @@
3798 this.gstElementFactory = gstElementFactory; 3846 this.gstElementFactory = gstElementFactory;
3799 } 3847 }
3800 3848
3803 { 3851 {
3804 super.setStruct(obj); 3852 super.setStruct(obj);
3805 gstElementFactory = cast(GstElementFactory*)obj; 3853 gstElementFactory = cast(GstElementFactory*)obj;
3806 Index: srcgstreamer/gstreamer/Element.d 3854 Index: srcgstreamer/gstreamer/Element.d
3807 =================================================================== 3855 ===================================================================
3808 --- srcgstreamer/gstreamer/Element.d (revision 843) 3856 --- srcgstreamer/gstreamer/Element.d (revision 844)
3809 +++ srcgstreamer/gstreamer/Element.d (working copy) 3857 +++ srcgstreamer/gstreamer/Element.d (working copy)
3810 @@ -184,7 +184,7 @@ 3858 @@ -184,7 +184,7 @@
3811 this.gstElement = gstElement; 3859 this.gstElement = gstElement;
3812 } 3860 }
3813 3861
3816 { 3864 {
3817 super.setStruct(obj); 3865 super.setStruct(obj);
3818 gstElement = cast(GstElement*)obj; 3866 gstElement = cast(GstElement*)obj;
3819 Index: srcgda/gda/DataModelHash.d 3867 Index: srcgda/gda/DataModelHash.d
3820 =================================================================== 3868 ===================================================================
3821 --- srcgda/gda/DataModelHash.d (revision 843) 3869 --- srcgda/gda/DataModelHash.d (revision 844)
3822 +++ srcgda/gda/DataModelHash.d (working copy) 3870 +++ srcgda/gda/DataModelHash.d (working copy)
3823 @@ -117,7 +117,7 @@ 3871 @@ -117,7 +117,7 @@
3824 this.gdaDataModelHash = gdaDataModelHash; 3872 this.gdaDataModelHash = gdaDataModelHash;
3825 } 3873 }
3826 3874
3829 { 3877 {
3830 super.setStruct(obj); 3878 super.setStruct(obj);
3831 gdaDataModelHash = cast(GdaDataModelHash*)obj; 3879 gdaDataModelHash = cast(GdaDataModelHash*)obj;
3832 Index: srcgda/gda/Connection.d 3880 Index: srcgda/gda/Connection.d
3833 =================================================================== 3881 ===================================================================
3834 --- srcgda/gda/Connection.d (revision 843) 3882 --- srcgda/gda/Connection.d (revision 844)
3835 +++ srcgda/gda/Connection.d (working copy) 3883 +++ srcgda/gda/Connection.d (working copy)
3836 @@ -139,7 +139,7 @@ 3884 @@ -139,7 +139,7 @@
3837 this.gdaConnection = gdaConnection; 3885 this.gdaConnection = gdaConnection;
3838 } 3886 }
3839 3887
3842 { 3890 {
3843 super.setStruct(obj); 3891 super.setStruct(obj);
3844 gdaConnection = cast(GdaConnection*)obj; 3892 gdaConnection = cast(GdaConnection*)obj;
3845 Index: srcgda/gda/ErrorGda.d 3893 Index: srcgda/gda/ErrorGda.d
3846 =================================================================== 3894 ===================================================================
3847 --- srcgda/gda/ErrorGda.d (revision 843) 3895 --- srcgda/gda/ErrorGda.d (revision 844)
3848 +++ srcgda/gda/ErrorGda.d (working copy) 3896 +++ srcgda/gda/ErrorGda.d (working copy)
3849 @@ -109,7 +109,7 @@ 3897 @@ -109,7 +109,7 @@
3850 this.gdaError = gdaError; 3898 this.gdaError = gdaError;
3851 } 3899 }
3852 3900
3855 { 3903 {
3856 super.setStruct(obj); 3904 super.setStruct(obj);
3857 gdaError = cast(GdaError*)obj; 3905 gdaError = cast(GdaError*)obj;
3858 Index: srcgda/gda/Client.d 3906 Index: srcgda/gda/Client.d
3859 =================================================================== 3907 ===================================================================
3860 --- srcgda/gda/Client.d (revision 843) 3908 --- srcgda/gda/Client.d (revision 844)
3861 +++ srcgda/gda/Client.d (working copy) 3909 +++ srcgda/gda/Client.d (working copy)
3862 @@ -130,7 +130,7 @@ 3910 @@ -130,7 +130,7 @@
3863 this.gdaClient = gdaClient; 3911 this.gdaClient = gdaClient;
3864 } 3912 }
3865 3913
3868 { 3916 {
3869 super.setStruct(obj); 3917 super.setStruct(obj);
3870 gdaClient = cast(GdaClient*)obj; 3918 gdaClient = cast(GdaClient*)obj;
3871 Index: srcgda/gda/Select.d 3919 Index: srcgda/gda/Select.d
3872 =================================================================== 3920 ===================================================================
3873 --- srcgda/gda/Select.d (revision 843) 3921 --- srcgda/gda/Select.d (revision 844)
3874 +++ srcgda/gda/Select.d (working copy) 3922 +++ srcgda/gda/Select.d (working copy)
3875 @@ -110,7 +110,7 @@ 3923 @@ -110,7 +110,7 @@
3876 this.gdaSelect = gdaSelect; 3924 this.gdaSelect = gdaSelect;
3877 } 3925 }
3878 3926
3881 { 3929 {
3882 super.setStruct(obj); 3930 super.setStruct(obj);
3883 gdaSelect = cast(GdaSelect*)obj; 3931 gdaSelect = cast(GdaSelect*)obj;
3884 Index: srcgda/gda/Export.d 3932 Index: srcgda/gda/Export.d
3885 =================================================================== 3933 ===================================================================
3886 --- srcgda/gda/Export.d (revision 843) 3934 --- srcgda/gda/Export.d (revision 844)
3887 +++ srcgda/gda/Export.d (working copy) 3935 +++ srcgda/gda/Export.d (working copy)
3888 @@ -112,7 +112,7 @@ 3936 @@ -112,7 +112,7 @@
3889 this.gdaExport = gdaExport; 3937 this.gdaExport = gdaExport;
3890 } 3938 }
3891 3939
3894 { 3942 {
3895 super.setStruct(obj); 3943 super.setStruct(obj);
3896 gdaExport = cast(GdaExport*)obj; 3944 gdaExport = cast(GdaExport*)obj;
3897 Index: srcgda/gda/Transaction.d 3945 Index: srcgda/gda/Transaction.d
3898 =================================================================== 3946 ===================================================================
3899 --- srcgda/gda/Transaction.d (revision 843) 3947 --- srcgda/gda/Transaction.d (revision 844)
3900 +++ srcgda/gda/Transaction.d (working copy) 3948 +++ srcgda/gda/Transaction.d (working copy)
3901 @@ -106,7 +106,7 @@ 3949 @@ -106,7 +106,7 @@
3902 this.gdaTransaction = gdaTransaction; 3950 this.gdaTransaction = gdaTransaction;
3903 } 3951 }
3904 3952
3907 { 3955 {
3908 super.setStruct(obj); 3956 super.setStruct(obj);
3909 gdaTransaction = cast(GdaTransaction*)obj; 3957 gdaTransaction = cast(GdaTransaction*)obj;
3910 Index: srcgda/gda/DataModelList.d 3958 Index: srcgda/gda/DataModelList.d
3911 =================================================================== 3959 ===================================================================
3912 --- srcgda/gda/DataModelList.d (revision 843) 3960 --- srcgda/gda/DataModelList.d (revision 844)
3913 +++ srcgda/gda/DataModelList.d (working copy) 3961 +++ srcgda/gda/DataModelList.d (working copy)
3914 @@ -113,7 +113,7 @@ 3962 @@ -113,7 +113,7 @@
3915 this.gdaDataModelList = gdaDataModelList; 3963 this.gdaDataModelList = gdaDataModelList;
3916 } 3964 }
3917 3965
3920 { 3968 {
3921 super.setStruct(obj); 3969 super.setStruct(obj);
3922 gdaDataModelList = cast(GdaDataModelList*)obj; 3970 gdaDataModelList = cast(GdaDataModelList*)obj;
3923 Index: srcgda/gda/Table.d 3971 Index: srcgda/gda/Table.d
3924 =================================================================== 3972 ===================================================================
3925 --- srcgda/gda/Table.d (revision 843) 3973 --- srcgda/gda/Table.d (revision 844)
3926 +++ srcgda/gda/Table.d (working copy) 3974 +++ srcgda/gda/Table.d (working copy)
3927 @@ -112,7 +112,7 @@ 3975 @@ -112,7 +112,7 @@
3928 this.gdaTable = gdaTable; 3976 this.gdaTable = gdaTable;
3929 } 3977 }
3930 3978
3933 { 3981 {
3934 super.setStruct(obj); 3982 super.setStruct(obj);
3935 gdaTable = cast(GdaTable*)obj; 3983 gdaTable = cast(GdaTable*)obj;
3936 Index: srcgda/gda/DataModelArray.d 3984 Index: srcgda/gda/DataModelArray.d
3937 =================================================================== 3985 ===================================================================
3938 --- srcgda/gda/DataModelArray.d (revision 843) 3986 --- srcgda/gda/DataModelArray.d (revision 844)
3939 +++ srcgda/gda/DataModelArray.d (working copy) 3987 +++ srcgda/gda/DataModelArray.d (working copy)
3940 @@ -104,7 +104,7 @@ 3988 @@ -104,7 +104,7 @@
3941 this.gdaDataModelArray = gdaDataModelArray; 3989 this.gdaDataModelArray = gdaDataModelArray;
3942 } 3990 }
3943 3991
3946 { 3994 {
3947 super.setStruct(obj); 3995 super.setStruct(obj);
3948 gdaDataModelArray = cast(GdaDataModelArray*)obj; 3996 gdaDataModelArray = cast(GdaDataModelArray*)obj;
3949 Index: srcgda/gda/DataModel.d 3997 Index: srcgda/gda/DataModel.d
3950 =================================================================== 3998 ===================================================================
3951 --- srcgda/gda/DataModel.d (revision 843) 3999 --- srcgda/gda/DataModel.d (revision 844)
3952 +++ srcgda/gda/DataModel.d (working copy) 4000 +++ srcgda/gda/DataModel.d (working copy)
3953 @@ -118,7 +118,7 @@ 4001 @@ -118,7 +118,7 @@
3954 this.gdaDataModel = gdaDataModel; 4002 this.gdaDataModel = gdaDataModel;
3955 } 4003 }
3956 4004
3957 - protected void setStruct(GObject* obj) 4005 - protected void setStruct(GObject* obj)
3958 + protected override void setStruct(GObject* obj) 4006 + protected override void setStruct(GObject* obj)
3959 { 4007 {
3960 super.setStruct(obj); 4008 super.setStruct(obj);
3961 gdaDataModel = cast(GdaDataModel*)obj; 4009 gdaDataModel = cast(GdaDataModel*)obj;
3962 Index: demos/dsss.conf
3963 ===================================================================
3964 --- demos/dsss.conf (revision 843)
3965 +++ demos/dsss.conf (working copy)
3966 @@ -34,5 +34,6 @@
3967 #type = subdir
3968
3969 #Please note that the gstreamer demos require Tango
3970 +
3971 [gstreamer]
3972 type = subdir
3973 Index: demos/gtkD/TestWindow/TestWindow.d
3974 ===================================================================
3975 --- demos/gtkD/TestWindow/TestWindow.d (revision 843)
3976 +++ demos/gtkD/TestWindow/TestWindow.d (working copy)
3977 @@ -950,7 +950,8 @@
3978 gdkThreadsLeave();
3979 yield();
3980 }
3981 - assert(0);
3982 + //return 1;
3983 + assert(0);
3984 }
3985 }
3986
3987 Index: wrap/utils/GtkDClass.d 4010 Index: wrap/utils/GtkDClass.d
3988 =================================================================== 4011 ===================================================================
3989 --- wrap/utils/GtkDClass.d (revision 843) 4012 --- wrap/utils/GtkDClass.d (revision 844)
3990 +++ wrap/utils/GtkDClass.d (working copy) 4013 +++ wrap/utils/GtkDClass.d (working copy)
3991 @@ -650,7 +650,7 @@ 4014 @@ -650,7 +650,7 @@
3992 && gtkDParentName != "Surface" ) 4015 && gtkDParentName != "Surface" )
3993 { 4016 {
3994 text ~= ""; 4017 text ~= "";
3997 text ~= "{"; 4020 text ~= "{";
3998 text ~= " super.setStruct(obj);"; 4021 text ~= " super.setStruct(obj);";
3999 text ~= " "~var~" = cast("~gtkStruct~"*)obj;"; 4022 text ~= " "~var~" = cast("~gtkStruct~"*)obj;";
4000 Index: srcgl/glgdk/GLPixmap.d 4023 Index: srcgl/glgdk/GLPixmap.d
4001 =================================================================== 4024 ===================================================================
4002 --- srcgl/glgdk/GLPixmap.d (revision 843) 4025 --- srcgl/glgdk/GLPixmap.d (revision 844)
4003 +++ srcgl/glgdk/GLPixmap.d (working copy) 4026 +++ srcgl/glgdk/GLPixmap.d (working copy)
4004 @@ -112,7 +112,7 @@ 4027 @@ -112,7 +112,7 @@
4005 this.gdkGLPixmap = gdkGLPixmap; 4028 this.gdkGLPixmap = gdkGLPixmap;
4006 } 4029 }
4007 4030
4010 { 4033 {
4011 super.setStruct(obj); 4034 super.setStruct(obj);
4012 gdkGLPixmap = cast(GdkGLPixmap*)obj; 4035 gdkGLPixmap = cast(GdkGLPixmap*)obj;
4013 Index: srcgl/glgdk/GLContext.d 4036 Index: srcgl/glgdk/GLContext.d
4014 =================================================================== 4037 ===================================================================
4015 --- srcgl/glgdk/GLContext.d (revision 843) 4038 --- srcgl/glgdk/GLContext.d (revision 844)
4016 +++ srcgl/glgdk/GLContext.d (working copy) 4039 +++ srcgl/glgdk/GLContext.d (working copy)
4017 @@ -111,7 +111,7 @@ 4040 @@ -111,7 +111,7 @@
4018 this.gdkGLContext = gdkGLContext; 4041 this.gdkGLContext = gdkGLContext;
4019 } 4042 }
4020 4043
4023 { 4046 {
4024 super.setStruct(obj); 4047 super.setStruct(obj);
4025 gdkGLContext = cast(GdkGLContext*)obj; 4048 gdkGLContext = cast(GdkGLContext*)obj;
4026 Index: srcgl/glgdk/GLConfig.d 4049 Index: srcgl/glgdk/GLConfig.d
4027 =================================================================== 4050 ===================================================================
4028 --- srcgl/glgdk/GLConfig.d (revision 843) 4051 --- srcgl/glgdk/GLConfig.d (revision 844)
4029 +++ srcgl/glgdk/GLConfig.d (working copy) 4052 +++ srcgl/glgdk/GLConfig.d (working copy)
4030 @@ -122,7 +122,7 @@ 4053 @@ -122,7 +122,7 @@
4031 this.gdkGLConfig = gdkGLConfig; 4054 this.gdkGLConfig = gdkGLConfig;
4032 } 4055 }
4033 4056
4036 { 4059 {
4037 super.setStruct(obj); 4060 super.setStruct(obj);
4038 gdkGLConfig = cast(GdkGLConfig*)obj; 4061 gdkGLConfig = cast(GdkGLConfig*)obj;
4039 Index: srcgl/glgdk/GLWindow.d 4062 Index: srcgl/glgdk/GLWindow.d
4040 =================================================================== 4063 ===================================================================
4041 --- srcgl/glgdk/GLWindow.d (revision 843) 4064 --- srcgl/glgdk/GLWindow.d (revision 844)
4042 +++ srcgl/glgdk/GLWindow.d (working copy) 4065 +++ srcgl/glgdk/GLWindow.d (working copy)
4043 @@ -111,7 +111,7 @@ 4066 @@ -111,7 +111,7 @@
4044 this.gdkGLWindow = gdkGLWindow; 4067 this.gdkGLWindow = gdkGLWindow;
4045 } 4068 }
4046 4069