summaryrefslogtreecommitdiffstats
path: root/meta-openembedded/meta-oe/recipes-graphics/libyui/libyui/0001-Fix-build-with-clang.patch
blob: 4269018192a551d364f0be1ea7ba25600b5e374b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
From 18562671982ad97549bccb444fdbb5905b6e9335 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 24 Apr 2018 15:06:14 -0700
Subject: [PATCH] Fix build with clang

Fix warnings found with clang

error: class 'YButtonBoxPrivate' was previously declared as a struct [-Werror,-Wmismatched-tags]
|     friend class YButtonBoxPrivate;

YTimezoneSelector.cc:35:9: error: private field 'dummy' is not used [-Werror,-Wunused-private-field]
   bool dummy;
        ^

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
Upstream-Status: Submitted [https://github.com/libyui/libyui/pull/123]

 src/YAlignment.h          | 2 +-
 src/YBarGraph.h           | 2 +-
 src/YBusyIndicator.h      | 2 +-
 src/YButtonBox.h          | 4 ++--
 src/YCheckBox.h           | 2 +-
 src/YCheckBoxFrame.h      | 2 +-
 src/YComboBox.h           | 2 +-
 src/YCommandLine.h        | 2 +-
 src/YContextMenu.h        | 2 +-
 src/YDateField.h          | 2 +-
 src/YDialog.h             | 2 +-
 src/YDownloadProgress.h   | 2 +-
 src/YDumbTab.h            | 2 +-
 src/YEmpty.h              | 2 +-
 src/YEventFilter.h        | 2 +-
 src/YFrame.h              | 2 +-
 src/YGraph.h              | 2 +-
 src/YImage.h              | 2 +-
 src/YInputField.h         | 2 +-
 src/YIntField.h           | 2 +-
 src/YLabel.h              | 2 +-
 src/YLayoutBox.h          | 2 +-
 src/YLogView.h            | 2 +-
 src/YMenuButton.h         | 2 +-
 src/YMultiLineEdit.h      | 2 +-
 src/YMultiProgressMeter.h | 2 +-
 src/YMultiSelectionBox.h  | 2 +-
 src/YPartitionSplitter.h  | 2 +-
 src/YProgressBar.h        | 2 +-
 src/YPushButton.h         | 2 +-
 src/YRadioButton.h        | 2 +-
 src/YRadioButtonGroup.h   | 2 +-
 src/YRichText.h           | 2 +-
 src/YSelectionBox.h       | 2 +-
 src/YSelectionWidget.h    | 2 +-
 src/YSimpleInputField.h   | 2 +-
 src/YSlider.h             | 2 +-
 src/YSpacing.h            | 2 +-
 src/YSquash.h             | 2 +-
 src/YTable.h              | 2 +-
 src/YTableHeader.h        | 2 +-
 src/YTimeField.h          | 2 +-
 src/YTimezoneSelector.cc  | 2 +-
 src/YTree.h               | 2 +-
 src/YUILog.h              | 2 +-
 src/YWidget.h             | 2 +-
 src/YWizard.h             | 2 +-
 47 files changed, 48 insertions(+), 48 deletions(-)

diff --git a/src/YAlignment.h b/src/YAlignment.h
index d716c77..7276944 100644
--- a/src/YAlignment.h
+++ b/src/YAlignment.h
@@ -28,7 +28,7 @@
 #include "YSingleChildContainerWidget.h"
 
 
-class YAlignmentPrivate;
+struct YAlignmentPrivate;
 
 /**
  * Implementation of all the alignment widgets:
diff --git a/src/YBarGraph.h b/src/YBarGraph.h
index 29f7f26..d7eaad2 100644
--- a/src/YBarGraph.h
+++ b/src/YBarGraph.h
@@ -29,7 +29,7 @@
 #include "YColor.h"
 
 
-class YBarGraphPrivate;
+struct YBarGraphPrivate;
 class YBarGraphSegment;
 
 /**
diff --git a/src/YBusyIndicator.h b/src/YBusyIndicator.h
index 9530fa5..75297d8 100644
--- a/src/YBusyIndicator.h
+++ b/src/YBusyIndicator.h
@@ -27,7 +27,7 @@
 
 #include "YWidget.h"
 
-class YBusyIndicatorPrivate;
+struct YBusyIndicatorPrivate;
 
 
 /**
diff --git a/src/YButtonBox.h b/src/YButtonBox.h
index 84f8dbb..ca51f57 100644
--- a/src/YButtonBox.h
+++ b/src/YButtonBox.h
@@ -30,7 +30,7 @@
 #include "YWidget.h"
 #include "YPushButton.h"
 
-class YButtonBoxPrivate;
+struct YButtonBoxPrivate;
 class YPushButton;
 
 
@@ -147,7 +147,7 @@ struct YButtonBoxMargins
  **/
 class YButtonBox : public YWidget
 {
-    friend class YButtonBoxPrivate;
+    friend struct YButtonBoxPrivate;
 
 protected:
     /**
diff --git a/src/YCheckBox.h b/src/YCheckBox.h
index 793cc77..03f3faa 100644
--- a/src/YCheckBox.h
+++ b/src/YCheckBox.h
@@ -30,7 +30,7 @@
 #include "YWidget.h"
 #include "ImplPtr.h"
 
-class YCheckBoxPrivate;
+struct YCheckBoxPrivate;
 
 enum YCheckBoxState
 {
diff --git a/src/YCheckBoxFrame.h b/src/YCheckBoxFrame.h
index 243f1a0..7017110 100644
--- a/src/YCheckBoxFrame.h
+++ b/src/YCheckBoxFrame.h
@@ -29,7 +29,7 @@
 #include "YSingleChildContainerWidget.h"
 #include "ImplPtr.h"
 
-class YCheckBoxFramePrivate;
+struct YCheckBoxFramePrivate;
 
 
 /**
diff --git a/src/YComboBox.h b/src/YComboBox.h
index 416359a..ad0e550 100644
--- a/src/YComboBox.h
+++ b/src/YComboBox.h
@@ -27,7 +27,7 @@
 
 #include "YSelectionWidget.h"
 
-class YComboBoxPrivate;
+struct YComboBoxPrivate;
 
 
 /**
diff --git a/src/YCommandLine.h b/src/YCommandLine.h
index 70cb4fe..f344a3b 100644
--- a/src/YCommandLine.h
+++ b/src/YCommandLine.h
@@ -28,7 +28,7 @@
 #include <string>
 #include "ImplPtr.h"
 
-class YCommandLinePrivate;
+struct YCommandLinePrivate;
 
 
 /**
diff --git a/src/YContextMenu.h b/src/YContextMenu.h
index a4acb1c..1253002 100644
--- a/src/YContextMenu.h
+++ b/src/YContextMenu.h
@@ -29,7 +29,7 @@
 #include "YMenuItem.h"
 
 class YMenuItem;
-class YContextMenuPrivate;
+struct YContextMenuPrivate;
 
 
 /**
diff --git a/src/YDateField.h b/src/YDateField.h
index e5a468d..6164fba 100644
--- a/src/YDateField.h
+++ b/src/YDateField.h
@@ -27,7 +27,7 @@
 
 #include "YSimpleInputField.h"
 
-class YDateFieldPrivate;
+struct YDateFieldPrivate;
 
 /**
  * Input field for entering a date.
diff --git a/src/YDialog.h b/src/YDialog.h
index 66c25c0..371209b 100644
--- a/src/YDialog.h
+++ b/src/YDialog.h
@@ -32,7 +32,7 @@
 
 class YShortcutManager;
 class YPushButton;
-class YDialogPrivate;
+struct YDialogPrivate;
 class YEvent;
 class YEventFilter;
 
diff --git a/src/YDownloadProgress.h b/src/YDownloadProgress.h
index c47ec4f..fe09a9d 100644
--- a/src/YDownloadProgress.h
+++ b/src/YDownloadProgress.h
@@ -28,7 +28,7 @@
 #include "YWidget.h"
 
 
-class YDownloadProgressPrivate;
+struct YDownloadProgressPrivate;
 
 /**
  * DownloadProgress: A progress bar that monitors downloading a file by
diff --git a/src/YDumbTab.h b/src/YDumbTab.h
index aec17a3..f8fb250 100644
--- a/src/YDumbTab.h
+++ b/src/YDumbTab.h
@@ -27,7 +27,7 @@
 
 #include "YSelectionWidget.h"
 
-class YDumbTabPrivate;
+struct YDumbTabPrivate;
 
 /**
  * DumbTab: A very simple tab widget that can display and switch between a
diff --git a/src/YEmpty.h b/src/YEmpty.h
index 9a3cb36..9b88fbc 100644
--- a/src/YEmpty.h
+++ b/src/YEmpty.h
@@ -29,7 +29,7 @@
 #include "ImplPtr.h"
 
 
-class YEmptyPrivate;
+struct YEmptyPrivate;
 
 /**
  * A widget with zero size, useful as a placeholder.
diff --git a/src/YEventFilter.h b/src/YEventFilter.h
index 3dc1803..74aa62d 100644
--- a/src/YEventFilter.h
+++ b/src/YEventFilter.h
@@ -32,7 +32,7 @@
 class YEvent;
 class YDialog;
 
-class YEventFilterPrivate;
+struct YEventFilterPrivate;
 
 
 /**
diff --git a/src/YFrame.h b/src/YFrame.h
index 111e8ec..4f8c61e 100644
--- a/src/YFrame.h
+++ b/src/YFrame.h
@@ -29,7 +29,7 @@
 #include "YSingleChildContainerWidget.h"
 #include "ImplPtr.h"
 
-class YFramePrivate;
+struct YFramePrivate;
 
 
 /**
diff --git a/src/YGraph.h b/src/YGraph.h
index d90d1ae..287d800 100644
--- a/src/YGraph.h
+++ b/src/YGraph.h
@@ -37,7 +37,7 @@
  * For that reason a lot of functions simply take a void* instead of graph_t*.
  */
 
-class YGraphPrivate;
+struct YGraphPrivate;
 
 /**
  * A graph with nodes and edges, rendered with Graphviz.
diff --git a/src/YImage.h b/src/YImage.h
index 17bea21..84eb674 100644
--- a/src/YImage.h
+++ b/src/YImage.h
@@ -29,7 +29,7 @@
 #include <string>
 
 
-class YImagePrivate;
+struct YImagePrivate;
 
 /**
  * A picture, possibly animated, loaded from a file.
diff --git a/src/YInputField.h b/src/YInputField.h
index 70641ce..fa29b42 100644
--- a/src/YInputField.h
+++ b/src/YInputField.h
@@ -28,7 +28,7 @@
 #include <string>
 #include "YWidget.h"
 
-class YInputFieldPrivate;
+struct YInputFieldPrivate;
 
 
 
diff --git a/src/YIntField.h b/src/YIntField.h
index 9da0537..8ad2949 100644
--- a/src/YIntField.h
+++ b/src/YIntField.h
@@ -27,7 +27,7 @@
 
 #include "YWidget.h"
 
-class YIntFieldPrivate;
+struct YIntFieldPrivate;
 
 
 
diff --git a/src/YLabel.h b/src/YLabel.h
index d2fff61..bf06d8b 100644
--- a/src/YLabel.h
+++ b/src/YLabel.h
@@ -30,7 +30,7 @@
 #include "ImplPtr.h"
 
 
-class YLabelPrivate;
+struct YLabelPrivate;
 
 /**
  * Implementation of the Label, Heading and OutputField widgets
diff --git a/src/YLayoutBox.h b/src/YLayoutBox.h
index e652a45..070eaff 100644
--- a/src/YLayoutBox.h
+++ b/src/YLayoutBox.h
@@ -29,7 +29,7 @@
 #include "YWidget.h"
 
 
-class YLayoutBoxPrivate;
+struct YLayoutBoxPrivate;
 
 /**
  * A vertical or horizontal stacking of widgets, implementing HBox and VBox.
diff --git a/src/YLogView.h b/src/YLogView.h
index 53fb9ee..5b44229 100644
--- a/src/YLogView.h
+++ b/src/YLogView.h
@@ -27,7 +27,7 @@
 
 #include "YWidget.h"
 
-class YLogViewPrivate;
+struct YLogViewPrivate;
 
 
 /**
diff --git a/src/YMenuButton.h b/src/YMenuButton.h
index 205e730..5df7efb 100644
--- a/src/YMenuButton.h
+++ b/src/YMenuButton.h
@@ -29,7 +29,7 @@
 #include "YMenuItem.h"
 
 class YMenuItem;
-class YMenuButtonPrivate;
+struct YMenuButtonPrivate;
 
 
 /**
diff --git a/src/YMultiLineEdit.h b/src/YMultiLineEdit.h
index c52a6ae..1f792f8 100644
--- a/src/YMultiLineEdit.h
+++ b/src/YMultiLineEdit.h
@@ -27,7 +27,7 @@
 
 #include "YWidget.h"
 
-class YMultiLineEditPrivate;
+struct YMultiLineEditPrivate;
 
 /**
  * A multi-line plain-text area
diff --git a/src/YMultiProgressMeter.h b/src/YMultiProgressMeter.h
index 57c758d..f6bec91 100644
--- a/src/YMultiProgressMeter.h
+++ b/src/YMultiProgressMeter.h
@@ -28,7 +28,7 @@
 #include "YWidget.h"
 #include <vector>
 
-class YMultiProgressMeterPrivate;
+struct YMultiProgressMeterPrivate;
 
 
 /**
diff --git a/src/YMultiSelectionBox.h b/src/YMultiSelectionBox.h
index bbe5a20..f3a2947 100644
--- a/src/YMultiSelectionBox.h
+++ b/src/YMultiSelectionBox.h
@@ -27,7 +27,7 @@
 
 #include "YSelectionWidget.h"
 
-class YMultiSelectionBoxPrivate;
+struct YMultiSelectionBoxPrivate;
 
 
 /**
diff --git a/src/YPartitionSplitter.h b/src/YPartitionSplitter.h
index 2839bbc..9de1174 100644
--- a/src/YPartitionSplitter.h
+++ b/src/YPartitionSplitter.h
@@ -28,7 +28,7 @@
 #include "YWidget.h"
 
 
-class YPartitionSplitterPrivate;
+struct YPartitionSplitterPrivate;
 
 
 /**
diff --git a/src/YProgressBar.h b/src/YProgressBar.h
index 718352f..baab662 100644
--- a/src/YProgressBar.h
+++ b/src/YProgressBar.h
@@ -27,7 +27,7 @@
 
 #include "YWidget.h"
 
-class YProgressBarPrivate;
+struct YProgressBarPrivate;
 
 
 /**
diff --git a/src/YPushButton.h b/src/YPushButton.h
index 5b65c98..e288252 100644
--- a/src/YPushButton.h
+++ b/src/YPushButton.h
@@ -27,7 +27,7 @@
 
 #include "YWidget.h"
 
-class YPushButtonPrivate;
+struct YPushButtonPrivate;
 
 
 
diff --git a/src/YRadioButton.h b/src/YRadioButton.h
index 9dc62de..5a7c0dd 100644
--- a/src/YRadioButton.h
+++ b/src/YRadioButton.h
@@ -28,7 +28,7 @@
 #include "YWidget.h"
 
 class YRadioButtonGroup;
-class YRadioButtonPrivate;
+struct YRadioButtonPrivate;
 
 
 /**
diff --git a/src/YRadioButtonGroup.h b/src/YRadioButtonGroup.h
index 063a52e..671a257 100644
--- a/src/YRadioButtonGroup.h
+++ b/src/YRadioButtonGroup.h
@@ -28,7 +28,7 @@
 #include "YSingleChildContainerWidget.h"
 
 class YRadioButton;
-class YRadioButtonGroupPrivate;
+struct YRadioButtonGroupPrivate;
 
 typedef std::list<YRadioButton *> 		YRadioButtonList;
 typedef YRadioButtonList::iterator		YRadioButtonListIterator;
diff --git a/src/YRichText.h b/src/YRichText.h
index 149bfb3..86b3f80 100644
--- a/src/YRichText.h
+++ b/src/YRichText.h
@@ -30,7 +30,7 @@
 #include "ImplPtr.h"
 
 
-class YRichTextPrivate;
+struct YRichTextPrivate;
 
 
 /**
diff --git a/src/YSelectionBox.h b/src/YSelectionBox.h
index 7fc4fb8..9bbf9f3 100644
--- a/src/YSelectionBox.h
+++ b/src/YSelectionBox.h
@@ -27,7 +27,7 @@
 
 #include "YSelectionWidget.h"
 
-class YSelectionBoxPrivate;
+struct YSelectionBoxPrivate;
 
 
 /**
diff --git a/src/YSelectionWidget.h b/src/YSelectionWidget.h
index abbdfb4..cf05afd 100644
--- a/src/YSelectionWidget.h
+++ b/src/YSelectionWidget.h
@@ -29,7 +29,7 @@
 #include "YItem.h"
 #include "ImplPtr.h"
 
-class YSelectionWidgetPrivate;
+struct YSelectionWidgetPrivate;
 
 /**
  * Base class for various kinds of multi-value widgets.
diff --git a/src/YSimpleInputField.h b/src/YSimpleInputField.h
index 6d926d4..b93fe6b 100644
--- a/src/YSimpleInputField.h
+++ b/src/YSimpleInputField.h
@@ -27,7 +27,7 @@
 
 #include "YWidget.h"
 
-class YSimpleInputFieldPrivate;
+struct YSimpleInputFieldPrivate;
 
 
 /**
diff --git a/src/YSlider.h b/src/YSlider.h
index d29f6b8..4bcd7d3 100644
--- a/src/YSlider.h
+++ b/src/YSlider.h
@@ -27,7 +27,7 @@
 
 #include "YIntField.h"
 
-class YSliderPrivate;
+struct YSliderPrivate;
 
 
 /**
diff --git a/src/YSpacing.h b/src/YSpacing.h
index e8aafd3..066cd68 100644
--- a/src/YSpacing.h
+++ b/src/YSpacing.h
@@ -28,7 +28,7 @@
 #include "YWidget.h"
 #include "ImplPtr.h"
 
-class YSpacingPrivate;
+struct YSpacingPrivate;
 
 
 /**
diff --git a/src/YSquash.h b/src/YSquash.h
index 4bd0fb6..3804cc4 100644
--- a/src/YSquash.h
+++ b/src/YSquash.h
@@ -29,7 +29,7 @@
 #include "ImplPtr.h"
 
 
-class YSquashPrivate;
+struct YSquashPrivate;
 
 /**
  * HSquash, VSquash HVSquash: reduce child to its preferred size.
diff --git a/src/YTable.h b/src/YTable.h
index 6694f10..469b8ca 100644
--- a/src/YTable.h
+++ b/src/YTable.h
@@ -30,7 +30,7 @@
 #include "YTableItem.h"
 #include "YTableHeader.h"
 
-class YTablePrivate;
+struct YTablePrivate;
 
 
 
diff --git a/src/YTableHeader.h b/src/YTableHeader.h
index 70166c2..4ae99b4 100644
--- a/src/YTableHeader.h
+++ b/src/YTableHeader.h
@@ -31,7 +31,7 @@
 
 
 
-class YTableHeaderPrivate;
+struct YTableHeaderPrivate;
 
 /**
  * Helper class for YTable for table column properties:
diff --git a/src/YTimeField.h b/src/YTimeField.h
index ab2f9a3..f3a7b94 100644
--- a/src/YTimeField.h
+++ b/src/YTimeField.h
@@ -27,7 +27,7 @@
 
 #include "YSimpleInputField.h"
 
-class YTimeFieldPrivate;
+struct YTimeFieldPrivate;
 
 
 /**
diff --git a/src/YTimezoneSelector.cc b/src/YTimezoneSelector.cc
index 9259b64..e2f9b6f 100644
--- a/src/YTimezoneSelector.cc
+++ b/src/YTimezoneSelector.cc
@@ -32,7 +32,7 @@
 
 class YTimezoneSelectorPrivate
 {
-   bool dummy;
+//   bool dummy;
 };
 
 
diff --git a/src/YTree.h b/src/YTree.h
index 14fa279..70e1364 100644
--- a/src/YTree.h
+++ b/src/YTree.h
@@ -28,7 +28,7 @@
 #include "YSelectionWidget.h"
 
 class YTreeItem;
-class YTreePrivate;
+struct YTreePrivate;
 
 
 /**
diff --git a/src/YUILog.h b/src/YUILog.h
index 0890bc5..4a927a7 100644
--- a/src/YUILog.h
+++ b/src/YUILog.h
@@ -64,7 +64,7 @@
 
 
 
-class YUILogPrivate;
+struct YUILogPrivate;
 
 enum YUILogLevel_t
 {
diff --git a/src/YWidget.h b/src/YWidget.h
index 5b285d0..636a41b 100644
--- a/src/YWidget.h
+++ b/src/YWidget.h
@@ -45,7 +45,7 @@ typedef YChildrenManager<YWidget>	YWidgetChildrenManager;
 typedef YSingleChildManager<YWidget>	YSingleWidgetChildManager;
 typedef YChildrenRejector<YWidget>	YWidgetChildrenRejector;
 
-class YWidgetPrivate;
+struct YWidgetPrivate;
 
 
 /**
diff --git a/src/YWizard.h b/src/YWizard.h
index 7671cbf..975b597 100644
--- a/src/YWizard.h
+++ b/src/YWizard.h
@@ -28,7 +28,7 @@
 #include "YWidget.h"
 
 class YMacroRecorder;
-class YWizardPrivate;
+struct YWizardPrivate;
 class YPushButton;
 class YReplacePoint;
 
OpenPOWER on IntegriCloud