-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCppCheckResults.xml
More file actions
850 lines (850 loc) · 296 KB
/
Copy pathCppCheckResults.xml
File metadata and controls
850 lines (850 loc) · 296 KB
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
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
<?xml version="1.0" encoding="UTF-8" ?>
<results>
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1938" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="746" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="749" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="752" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="19" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="24" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="569" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1172" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1173" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1174" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1181" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1182" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1183" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1184" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1195" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1242" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="690" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="894" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="26" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="103" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="101" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="136" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="1109" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2260" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2977" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2990" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\validate.h" line="66" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="151" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="771" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="996" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="1504" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\icon.h" line="70" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\confbase.h" line="216" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="21" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="176" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="30" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="34" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\winpars.h" line="270" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="189" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\bitmap.h" line="156" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="290" id="uninitMemberVar" severity="style" msg="Member variable 'DecoderState::accum' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="290" id="uninitMemberVar" severity="style" msg="Member variable 'DecoderState::bit' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="290" id="uninitMemberVar" severity="style" msg="Member variable 'DecoderState::msb' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="290" id="uninitMemberVar" severity="style" msg="Member variable 'DecoderState::isLSB' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="319" id="uninitMemberVar" severity="style" msg="Member variable 'EncoderState::accum' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="319" id="uninitMemberVar" severity="style" msg="Member variable 'EncoderState::bit' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tracker.h" line="71" id="operatorEqVarError" severity="style" msg="Member variable 'wxTrackable::m_first' is not assigned a value in 'wxTrackable::operator='." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="128" id="uninitMemberVar" severity="style" msg="Member variable 'wxFontInfo::m_pointSize' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="34" id="uninitMemberVar" severity="style" msg="Member variable 'wxModule::m_state' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmltag.h" line="38" id="uninitMemberVar" severity="style" msg="Member variable 'wxHtmlTagsCache::m_CachePos' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="401" id="operatorEqVarError" severity="style" msg="Member variable 'wxFilterClassFactory::m_next' is not assigned a value in 'wxFilterClassFactory::operator='." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="84" id="uninitMemberVar" severity="style" msg="Member variable 'wxHtmlRenderingState::m_bgMode' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\winpars.h" line="268" id="uninitMemberVar" severity="style" msg="Member variable 'wxHtmlWinTagHandler::m_WParser' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_crntShiftDWord' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_pixelCount' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_EOFCode' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_clearCode' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_runningCode' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_runningBits' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_maxCode1' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_crntCode' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_crntShiftState' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imaggif.h" line="30" id="uninitMemberVar" severity="style" msg="Member variable 'wxGIFHandler::m_LZBuf' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="746" id="operatorEq" severity="style" msg='The wxLongToLongHashMap_wxImplementation_HashTable::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxLongToLongHashMap_wxImplementation_HashTable &wxLongToLongHashMap_wxImplementation_HashTable::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="749" id="operatorEq" severity="style" msg='The wxStringToStringHashMap_wxImplementation_HashTable::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxStringToStringHashMap_wxImplementation_HashTable &wxStringToStringHashMap_wxImplementation_HashTable::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="752" id="operatorEq" severity="style" msg='The wxStringToNumHashMap_wxImplementation_HashTable::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxStringToNumHashMap_wxImplementation_HashTable &wxStringToNumHashMap_wxImplementation_HashTable::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="19" id="operatorEq" severity="style" msg='The wxShadowObjectMethods_wxImplementation_HashTable::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxShadowObjectMethods_wxImplementation_HashTable &wxShadowObjectMethods_wxImplementation_HashTable::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="24" id="operatorEq" severity="style" msg='The wxShadowObjectFields_wxImplementation_HashTable::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxShadowObjectFields_wxImplementation_HashTable &wxShadowObjectFields_wxImplementation_HashTable::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="894" id="operatorEq" severity="style" msg='The wxStringToColourHashMap_wxImplementation_HashTable::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxStringToColourHashMap_wxImplementation_HashTable &wxStringToColourHashMap_wxImplementation_HashTable::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\utils.h" line="211" id="operatorEq" severity="style" msg='The wxPlatform::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxPlatform &wxPlatform::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="116" id="operatorEq" severity="style" msg='The wxVariant::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxVariant &wxVariant::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="290" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'mode' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="319" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'mode' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="163" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_type' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\versioninfo.h" line="29" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_name' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\versioninfo.h" line="33" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_description' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\versioninfo.h" line="34" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_copyright' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2297" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_activationReason' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="51" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_Location' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="52" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_MimeType' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="574" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_Colour' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="599" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_Font' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="659" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_Target' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="661" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_Href' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="661" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_Target' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="663" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_Href' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="663" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_Target' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlwin.h" line="581" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_pt' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlwin.h" line="582" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_mouseEvent' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlwin.h" line="619" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_linkInfo' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="533" id="copyCtorPointerCopying" severity="style" msg="Value of pointer 'm_bufdata', which points to allocated memory, is copied in copy constructor instead of allocating new memory." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdiobj.h" line="89" id="duplInheritedMember" severity="style" msg="The class 'wxIconBundle' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxGDIObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxGDIObject' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxImage' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\frame.h" line="247" id="duplInheritedMember" severity="style" msg="The class 'wxFrame' defines member variable with name 'sm_eventTable' also defined in its parent class 'wxFrameBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\frame.h" line="247" id="duplInheritedMember" severity="style" msg="The class 'wxFrame' defines member variable with name 'sm_eventHashTable' also defined in its parent class 'wxFrameBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="1849" id="duplInheritedMember" severity="style" msg="The class 'wxWindow' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxWindowBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="1851" id="duplInheritedMember" severity="style" msg="The class 'wxWindow' defines member variable with name 'sm_eventTable' also defined in its parent class 'wxWindowBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="1851" id="duplInheritedMember" severity="style" msg="The class 'wxWindow' defines member variable with name 'sm_eventHashTable' also defined in its parent class 'wxWindowBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxVariant' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3744" id="duplInheritedMember" severity="style" msg="The class 'wxWindowBase' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvtHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3690" id="duplInheritedMember" severity="style" msg="The class 'wxWindowBase' defines member variable with name 'sm_eventTable' also defined in its parent class 'wxEvtHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3693" id="duplInheritedMember" severity="style" msg="The class 'wxWindowBase' defines member variable with name 'sm_eventHashTable' also defined in its parent class 'wxEvtHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxEvtHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxIdleEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxThreadEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxCommandEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxMouseEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxFocusEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxChildFocusEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxKeyEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxNavigationKeyEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxSetCursorEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxScrollEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxScrollWinEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxSizeEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxMoveEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxCloseEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxActivateEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxWindowCreateEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxWindowDestroyEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxShowEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxIconizeEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxMaximizeEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxMouseCaptureChangedEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxMouseCaptureLostEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxPaintEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxEraseEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxNcPaintEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxMenuEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxContextMenuEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxSysColourChangedEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxDisplayChangedEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxQueryNewPaletteEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxPaletteChangedEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxJoystickEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxDropFilesEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxInitDialogEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxUpdateUIEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxClipboardTextEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxHelpEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxNotifyEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxRegionIterator' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3744" id="duplInheritedMember" severity="style" msg="The class 'wxValidator' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvtHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxAcceleratorTable' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxToolTip' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="84" id="duplInheritedMember" severity="style" msg="The class 'wxInputStream' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxStreamBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="93" id="duplInheritedMember" severity="style" msg="The struct 'wxWeakRefImpl' defines member variable with name 'm_pobj' also defined in its parent class 'wxWeakRefStatic<T>'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\toplevel.h" line="358" id="duplInheritedMember" severity="style" msg="The class 'wxTopLevelWindowMSW' defines member variable with name 'sm_eventTable' also defined in its parent class 'wxTopLevelWindowBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\toplevel.h" line="358" id="duplInheritedMember" severity="style" msg="The class 'wxTopLevelWindowMSW' defines member variable with name 'sm_eventHashTable' also defined in its parent class 'wxTopLevelWindowBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxConfigBase' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="84" id="duplInheritedMember" severity="style" msg="The class 'wxOutputStream' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxStreamBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\confbase.h" line="406" id="duplInheritedMember" severity="style" msg="The class 'wxRegConfig' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxConfigBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxModule' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlEntitiesParser' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxStreamBase' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="266" id="duplInheritedMember" severity="style" msg="The class 'wxCountingOutputStream' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxOutputStream'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="224" id="duplInheritedMember" severity="style" msg="The class 'wxFilterInputStream' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxInputStream'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="266" id="duplInheritedMember" severity="style" msg="The class 'wxFilterOutputStream' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxOutputStream'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxFilterClassFactoryBase' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="375" id="duplInheritedMember" severity="style" msg="The class 'wxFilterClassFactory' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxFilterClassFactoryBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxFSFile' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxFileSystemHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxFileSystem' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlParser' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlTagHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlCell' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="370" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlContainerCell' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlCell'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="370" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlWordCell' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlCell'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="370" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlColourCell' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlCell'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="370" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlFontCell' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlCell'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="370" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlWidgetCell' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlCell'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\scrolwin.h" line="485" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlWindow' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxScrolledWindow'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="52" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlWinParser' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlParser'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="218" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlWinTagHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlTagHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="116" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlTagsModule' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxModule'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlFilter' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlfilt.h" line="29" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlFilterPlainText' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlFilter'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlfilt.h" line="29" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlFilterHTML' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxHtmlFilter'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxImageHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxBMPHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imagbmp.h" line="68" id="duplInheritedMember" severity="style" msg="The class 'wxICOHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxBMPHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imagbmp.h" line="98" id="duplInheritedMember" severity="style" msg="The class 'wxCURHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxICOHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\imagbmp.h" line="127" id="duplInheritedMember" severity="style" msg="The class 'wxANIHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCURHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxPNGHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxGIFHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxPCXHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxJPEGHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxTGAHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxTIFFHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxPNMHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="174" id="duplInheritedMember" severity="style" msg="The class 'wxXPMHandler' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxImageHandler'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxMask' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlCellEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxHtmlLinkEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\frame.h" line="163" id="duplInheritedMember" severity="style" msg="The class 'HelpFrame' defines member variable with name 'sm_eventTable' also defined in its parent class 'wxFrame'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\frame.h" line="163" id="duplInheritedMember" severity="style" msg="The class 'HelpFrame' defines member variable with name 'sm_eventHashTable' also defined in its parent class 'wxFrame'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\windowid.h" line="38" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowIDRef' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\windowid.h" line="43" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowIDRef' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="366" id="noExplicitConstructor" severity="style" msg="Class 'wxCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="368" id="noExplicitConstructor" severity="style" msg="Class 'wxCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="371" id="noExplicitConstructor" severity="style" msg="Class 'wxCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="372" id="noExplicitConstructor" severity="style" msg="Class 'wxCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="374" id="noExplicitConstructor" severity="style" msg="Class 'wxCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="386" id="noExplicitConstructor" severity="style" msg="Class 'wxWCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="388" id="noExplicitConstructor" severity="style" msg="Class 'wxWCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="391" id="noExplicitConstructor" severity="style" msg="Class 'wxWCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="392" id="noExplicitConstructor" severity="style" msg="Class 'wxWCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="394" id="noExplicitConstructor" severity="style" msg="Class 'wxWCharBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="456" id="noExplicitConstructor" severity="style" msg="Class 'wxMemoryBufferData' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="522" id="noExplicitConstructor" severity="style" msg="Class 'wxMemoryBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="370" id="noExplicitConstructor" severity="style" msg="Class 'wxMBConvUTF8' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="493" id="noExplicitConstructor" severity="style" msg="Class 'wxCSConv' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strconv.h" line="494" id="noExplicitConstructor" severity="style" msg="Class 'wxCSConv' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\unichar.h" line="34" id="noExplicitConstructor" severity="style" msg="Class 'wxUniChar' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\unichar.h" line="35" id="noExplicitConstructor" severity="style" msg="Class 'wxUniChar' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\unichar.h" line="39" id="noExplicitConstructor" severity="style" msg="Class 'wxUniChar' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\unichar.h" line="42" id="noExplicitConstructor" severity="style" msg="Class 'wxUniChar' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\unichar.h" line="191" id="noExplicitConstructor" severity="style" msg="Class 'wxUniCharRef' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strvararg.h" line="139" id="noExplicitConstructor" severity="style" msg="Class 'wxFormatString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strvararg.h" line="141" id="noExplicitConstructor" severity="style" msg="Class 'wxFormatString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strvararg.h" line="143" id="noExplicitConstructor" severity="style" msg="Class 'wxFormatString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strvararg.h" line="145" id="noExplicitConstructor" severity="style" msg="Class 'wxFormatString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strvararg.h" line="147" id="noExplicitConstructor" severity="style" msg="Class 'wxFormatString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strvararg.h" line="149" id="noExplicitConstructor" severity="style" msg="Class 'wxFormatString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strvararg.h" line="249" id="noExplicitConstructor" severity="style" msg="Struct 'wxFormatStringArgument' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\strvararg.h" line="842" id="noExplicitConstructor" severity="style" msg="Struct 'wxArgNormalizedString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="163" id="noExplicitConstructor" severity="style" msg="Class 'wxCStrData' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="164" id="noExplicitConstructor" severity="style" msg="Class 'wxCStrData' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1241" id="noExplicitConstructor" severity="style" msg="Class 'wxString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1254" id="noExplicitConstructor" severity="style" msg="Class 'wxString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1267" id="noExplicitConstructor" severity="style" msg="Class 'wxString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1276" id="noExplicitConstructor" severity="style" msg="Class 'wxString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1278" id="noExplicitConstructor" severity="style" msg="Class 'wxString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1284" id="noExplicitConstructor" severity="style" msg="Class 'wxString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1317" id="noExplicitConstructor" severity="style" msg="Class 'wxString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1327" id="noExplicitConstructor" severity="style" msg="Class 'wxString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1053" id="noExplicitConstructor" severity="style" msg="Class 'iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1068" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1085" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msgout.h" line="110" id="noExplicitConstructor" severity="style" msg="Class 'wxMessageOutputStderr' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msgout.h" line="136" id="noExplicitConstructor" severity="style" msg="Class 'wxMessageOutputBest' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="746" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="746" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="749" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="749" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="752" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="752" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="19" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="19" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="24" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="108" id="noExplicitConstructor" severity="style" msg="Class 'wxStringClientData' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\scopeguard.h" line="422" id="noExplicitConstructor" severity="style" msg="Class 'VariableNullerImpl' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="378" id="noExplicitConstructor" severity="style" msg="Class 'wxListKey' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="380" id="noExplicitConstructor" severity="style" msg="Class 'wxListKey' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="382" id="noExplicitConstructor" severity="style" msg="Class 'wxListKey' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="384" id="noExplicitConstructor" severity="style" msg="Class 'wxListKey' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="488" id="noExplicitConstructor" severity="style" msg="Class 'wxListBase' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1195" id="noExplicitConstructor" severity="style" msg="Class 'wxObjectList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1195" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1195" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1195" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1205" id="noExplicitConstructor" severity="style" msg="Class 'wxList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1242" id="noExplicitConstructor" severity="style" msg="Class 'wxStringListBase' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1242" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1242" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1242" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1254" id="noExplicitConstructor" severity="style" msg="Class 'wxStringList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="430" id="noExplicitConstructor" severity="style" msg="Class 'wxRealPoint' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="547" id="noExplicitConstructor" severity="style" msg="Class 'wxPoint' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="690" id="noExplicitConstructor" severity="style" msg="Class 'wxPointList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="690" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="690" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="690" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="709" id="noExplicitConstructor" severity="style" msg="Class 'wxRect' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="894" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="894" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="934" id="noExplicitConstructor" severity="style" msg="Class 'wxResourceCache' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'wxGDIImageHandlerList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\cursor.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'wxCursor' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\cursor.h" line="28" id="noExplicitConstructor" severity="style" msg="Class 'wxCursor' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\cursor.h" line="30" id="noExplicitConstructor" severity="style" msg="Class 'wxCursor' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="142" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="254" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="280" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="282" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="385" id="noExplicitConstructor" severity="style" msg="Class 'wxSortedArrayString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="396" id="noExplicitConstructor" severity="style" msg="Class 'wxCArrayString' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="460" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayStringsAdapter' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="474" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayStringsAdapter' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filefn.h" line="816" id="noExplicitConstructor" severity="style" msg="Class 'wxPathList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\longlong.h" line="113" id="noExplicitConstructor" severity="style" msg="Class 'wxLongLongNative' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\longlong.h" line="350" id="noExplicitConstructor" severity="style" msg="Class 'wxULongLongNative' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\utils.h" line="215" id="noExplicitConstructor" severity="style" msg="Class 'wxPlatform' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\utils.h" line="216" id="noExplicitConstructor" severity="style" msg="Class 'wxPlatform' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\utils.h" line="217" id="noExplicitConstructor" severity="style" msg="Class 'wxPlatform' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\utils.h" line="218" id="noExplicitConstructor" severity="style" msg="Class 'wxPlatform' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\utils.h" line="711" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowDisabler' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\utils.h" line="714" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowDisabler' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\utils.h" line="749" id="noExplicitConstructor" severity="style" msg="Class 'wxBusyCursor' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1021" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayShort' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1021" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1021" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1022" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayInt' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1022" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1022" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1023" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayDouble' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1023" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1023" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1024" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayLong' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1024" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1024" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1025" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayPtrVoid' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1025" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1025" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\thread.h" line="144" id="noExplicitConstructor" severity="style" msg="Class 'wxMutex' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\thread.h" line="188" id="noExplicitConstructor" severity="style" msg="Class 'wxMutexLocker' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\thread.h" line="246" id="noExplicitConstructor" severity="style" msg="Class 'wxCriticalSection' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\thread.h" line="304" id="noExplicitConstructor" severity="style" msg="Class 'wxCriticalSectionLocker' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\thread.h" line="331" id="noExplicitConstructor" severity="style" msg="Class 'wxCondition' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\thread.h" line="519" id="noExplicitConstructor" severity="style" msg="Class 'wxThread' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\thread.h" line="714" id="noExplicitConstructor" severity="style" msg="Class 'wxThreadHelper' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\typeinfo.h" line="66" id="noExplicitConstructor" severity="style" msg="Class 'wxTypeIdentifier' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="134" id="noExplicitConstructor" severity="style" msg="Class 'wxAnyValueTypeScopedPtr' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="238" id="noExplicitConstructor" severity="style" msg="Class 'DataHolder' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="467" id="noExplicitConstructor" severity="style" msg="Class 'wxDateTime' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="470" id="noExplicitConstructor" severity="style" msg="Class 'wxDateTime' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="472" id="noExplicitConstructor" severity="style" msg="Class 'wxDateTime' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="475" id="noExplicitConstructor" severity="style" msg="Class 'wxDateTime' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="491" id="noExplicitConstructor" severity="style" msg="Class 'wxDateTime' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1133" id="noExplicitConstructor" severity="style" msg="Class 'wxDateTime' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="297" id="noExplicitConstructor" severity="style" msg="Class 'TimeZone' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="300" id="noExplicitConstructor" severity="style" msg="Class 'TimeZone' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1359" id="noExplicitConstructor" severity="style" msg="Class 'wxTimeSpan' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1549" id="noExplicitConstructor" severity="style" msg="Class 'wxHolidayAuthoritiesArray' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1549" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1549" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="101" id="noExplicitConstructor" severity="style" msg="Class 'wxVariantList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="101" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="101" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="101" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="111" id="noExplicitConstructor" severity="style" msg="Class 'wxVariant' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="415" id="noExplicitConstructor" severity="style" msg="Class 'wxAnyToVariantRegistration' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="428" id="noExplicitConstructor" severity="style" msg="Class 'wxAnyToVariantRegistrationImpl' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="755" id="noExplicitConstructor" severity="style" msg="Class 'wxAny' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="762" id="noExplicitConstructor" severity="style" msg="Class 'wxAny' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="767" id="noExplicitConstructor" severity="style" msg="Class 'wxAny' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="780" id="noExplicitConstructor" severity="style" msg="Class 'wxAny' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="1109" id="noExplicitConstructor" severity="style" msg="Class 'wxAnyList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="1109" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="1109" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="1109" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1100" id="noExplicitConstructor" severity="style" msg="Class 'wxPropagationDisabler' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1709" id="noExplicitConstructor" severity="style" msg="Class 'wxMouseEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1913" id="noExplicitConstructor" severity="style" msg="Class 'wxKeyEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2149" id="noExplicitConstructor" severity="style" msg="Class 'wxPaintEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2182" id="noExplicitConstructor" severity="style" msg="Class 'wxNcPaintEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2258" id="noExplicitConstructor" severity="style" msg="Class 'wxChildFocusEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2321" id="noExplicitConstructor" severity="style" msg="Class 'wxInitDialogEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2489" id="noExplicitConstructor" severity="style" msg="Class 'wxMaximizeEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2670" id="noExplicitConstructor" severity="style" msg="Class 'wxUpdateUIEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2807" id="noExplicitConstructor" severity="style" msg="Class 'wxMouseCaptureLostEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2843" id="noExplicitConstructor" severity="style" msg="Class 'wxPaletteChangedEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2873" id="noExplicitConstructor" severity="style" msg="Class 'wxQueryNewPaletteEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2975" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowCreateEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="2988" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowDestroyEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3248" id="noExplicitConstructor" severity="style" msg="Class 'wxEventTableEntryPointerArray' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3248" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3248" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3266" id="noExplicitConstructor" severity="style" msg="Class 'wxEventHashTable' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3747" id="noExplicitConstructor" severity="style" msg="Class 'wxEvtHandlerArray' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3747" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3747" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="126" id="noExplicitConstructor" severity="style" msg="Class 'wxFontInfo' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="128" id="noExplicitConstructor" severity="style" msg="Class 'wxFontInfo' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\font.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'wxFont' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\font.h" line="95" id="noExplicitConstructor" severity="style" msg="Class 'wxFont' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\colour.h" line="25" id="noExplicitConstructor" severity="style" msg="Class 'wxColour' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\region.h" line="20" id="noExplicitConstructor" severity="style" msg="Class 'wxRegion' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\region.h" line="21" id="noExplicitConstructor" severity="style" msg="Class 'wxRegion' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\region.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'wxRegion' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\region.h" line="65" id="noExplicitConstructor" severity="style" msg="Class 'wxRegionIterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\translation.h" line="55" id="noExplicitConstructor" severity="style" msg="Class 'wxPluralFormsCalculatorPtr' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\translation.h" line="85" id="noExplicitConstructor" severity="style" msg="Class 'wxMsgCatalog' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\accel.h" line="27" id="noExplicitConstructor" severity="style" msg="Class 'wxAcceleratorTable' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="151" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="151" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="151" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="151" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="592" id="noExplicitConstructor" severity="style" msg="Class 'ChildrenRepositioningGuard' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\window.h" line="727" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowCreationHook' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\iconloc.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'wxIconLocationBase' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\icon.h" line="50" id="noExplicitConstructor" severity="style" msg="Class 'wxIcon' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\icon.h" line="59" id="noExplicitConstructor" severity="style" msg="Class 'wxIcon' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\iconbndl.h" line="59" id="noExplicitConstructor" severity="style" msg="Class 'wxIconBundle' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="266" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRefDynamic' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="271" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRefDynamic' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\tooltip.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'wxToolTip' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\scrolwin.h" line="67" id="noExplicitConstructor" severity="style" msg="Class 'wxAnyScrollHelperBase' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\scrolwin.h" line="110" id="noExplicitConstructor" severity="style" msg="Class 'wxScrollHelperBase' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\generic\scrolwin.h" line="20" id="noExplicitConstructor" severity="style" msg="Class 'wxScrollHelper' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\registry.h" line="100" id="noExplicitConstructor" severity="style" msg="Class 'wxRegKey' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="21" id="noExplicitConstructor" severity="style" msg="Class 'wxModuleList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="21" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="21" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="21" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayClassInfo' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmltag.h" line="39" id="noExplicitConstructor" severity="style" msg="Class 'wxHtmlTagsCache' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="307" id="noExplicitConstructor" severity="style" msg="Class 'wxFilterInputStream' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="308" id="noExplicitConstructor" severity="style" msg="Class 'wxFilterInputStream' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="329" id="noExplicitConstructor" severity="style" msg="Class 'wxFilterOutputStream' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="330" id="noExplicitConstructor" severity="style" msg="Class 'wxFilterOutputStream' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="505" id="noExplicitConstructor" severity="style" msg="Class 'wxStreamBuffer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="667" id="noExplicitConstructor" severity="style" msg="Class 'wxWrapperInputStream' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\stream.h" line="668" id="noExplicitConstructor" severity="style" msg="Class 'wxWrapperInputStream' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\convauto.h" line="36" id="noExplicitConstructor" severity="style" msg="Class 'wxConvAuto' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\file.h" line="55" id="noExplicitConstructor" severity="style" msg="Class 'wxFile' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\file.h" line="145" id="noExplicitConstructor" severity="style" msg="Class 'wxTempFile' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="176" id="noExplicitConstructor" severity="style" msg="Class 'wxFSHandlerHash_wxImplementation_HashTable' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="176" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="176" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="30" id="noExplicitConstructor" severity="style" msg="Class 'wxHtmlTagHandlersSet_wxImplementation_HashTable' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="30" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="30" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="34" id="noExplicitConstructor" severity="style" msg="Class 'wxHtmlTagHandlersHash_wxImplementation_HashTable' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="34" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="34" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="447" id="noExplicitConstructor" severity="style" msg="Class 'wxHtmlContainerCell' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlcell.h" line="599" id="noExplicitConstructor" severity="style" msg="Class 'wxHtmlFontCell' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\encconv.h" line="44" id="noExplicitConstructor" severity="style" msg="Class 'wxFontEncodingArray' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\encconv.h" line="44" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\encconv.h" line="44" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\winpars.h" line="41" id="noExplicitConstructor" severity="style" msg="Class 'wxHtmlWinParser' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="189" id="noExplicitConstructor" severity="style" msg="Class 'wxImageHistogramBase_wxImplementation_HashTable' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="189" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="189" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="269" id="noExplicitConstructor" severity="style" msg="Class 'wxImage' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\bitmap.h" line="57" id="noExplicitConstructor" severity="style" msg="Class 'wxBitmap' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\bitmap.h" line="246" id="noExplicitConstructor" severity="style" msg="Class 'wxMask' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\bitmap.h" line="249" id="noExplicitConstructor" severity="style" msg="Class 'wxMask' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlwin.h" line="144" id="noExplicitConstructor" severity="style" msg="Class 'wxHtmlWindowMouseHelper' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="218" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRef<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="227" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRef<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="218" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRef<wxEvtHandler>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="227" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRef<wxEvtHandler>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="234" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRef<wxEvtHandler>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="218" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRef<wxWindow>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="227" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRef<wxWindow>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\weakref.h" line="234" id="noExplicitConstructor" severity="style" msg="Class 'wxWeakRef<wxWindow>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\scopedptr.h" line="43" id="noExplicitConstructor" severity="style" msg="Class 'wxScopedPtr<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="237" id="noExplicitConstructor" severity="style" msg="Class 'wxVector<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="152" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="196" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="197" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="237" id="noExplicitConstructor" severity="style" msg="Class 'wxVector<wxToolTip*>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="237" id="noExplicitConstructor" severity="style" msg="Class 'wxVector<wxHtmlTagHandlersHash*>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\scopeguard.h" line="139" id="noExplicitConstructor" severity="style" msg="Class 'wxScopeGuardImpl0<F>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="284" id="noExplicitConstructor" severity="style" msg="Class 'wxObjectDataPtr<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\flags.h" line="29" id="noExplicitConstructor" severity="style" msg="Class 'wxBitset<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\flags.h" line="35" id="noExplicitConstructor" severity="style" msg="Class 'wxBitset<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="404" id="noExplicitConstructor" severity="style" msg="Class 'wxWritableCharTypeBuffer<char>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="410" id="noExplicitConstructor" severity="style" msg="Class 'wxWritableCharTypeBuffer<char>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="404" id="noExplicitConstructor" severity="style" msg="Class 'wxWritableCharTypeBuffer<__WCHAR_TYPE__>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="410" id="noExplicitConstructor" severity="style" msg="Class 'wxWritableCharTypeBuffer<__WCHAR_TYPE__>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="269" id="noExplicitConstructor" severity="style" msg="Class 'wxCharTypeBuffer<char>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="307" id="noExplicitConstructor" severity="style" msg="Class 'wxCharTypeBuffer<char>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="269" id="noExplicitConstructor" severity="style" msg="Class 'wxCharTypeBuffer<__WCHAR_TYPE__>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="307" id="noExplicitConstructor" severity="style" msg="Class 'wxCharTypeBuffer<__WCHAR_TYPE__>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="269" id="noExplicitConstructor" severity="style" msg="Class 'wxCharTypeBuffer<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\buffer.h" line="307" id="noExplicitConstructor" severity="style" msg="Class 'wxCharTypeBuffer<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="831" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="832" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="176" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="178" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="185" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="187" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="440" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="442" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="449" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\font.h" line="451" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="746" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="749" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="752" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="19" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="24" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="894" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="176" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="30" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="34" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="189" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="2235" id="CastIntegerToAddressAtReturn" severity="style" msg="Returning an integer (int/long/etc) in a function with pointer return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit integer down to 32-bit pointer. The safe way is to always return a pointer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="2240" id="CastIntegerToAddressAtReturn" severity="style" msg="Returning an integer (int/long/etc) in a function with pointer return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit integer down to 32-bit pointer. The safe way is to always return a pointer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="2245" id="CastIntegerToAddressAtReturn" severity="style" msg="Returning an integer (int/long/etc) in a function with pointer return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit integer down to 32-bit pointer. The safe way is to always return a pointer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="2249" id="CastIntegerToAddressAtReturn" severity="style" msg="Returning an integer (int/long/etc) in a function with pointer return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit integer down to 32-bit pointer. The safe way is to always return a pointer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="2251" id="CastIntegerToAddressAtReturn" severity="style" msg="Returning an integer (int/long/etc) in a function with pointer return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit integer down to 32-bit pointer. The safe way is to always return a pointer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="2253" id="CastIntegerToAddressAtReturn" severity="style" msg="Returning an integer (int/long/etc) in a function with pointer return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit integer down to 32-bit pointer. The safe way is to always return a pointer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1537" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\iconbndl.h" line="22" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\statusbr.h" line="103" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1028" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\string.h" line="1063" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="746" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="746" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="749" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="749" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="752" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hashmap.h" line="752" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="19" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="19" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="24" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clntdata.h" line="24" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1195" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1242" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="690" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="773" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="783" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="794" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="802" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="894" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="894" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="26" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="260" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="262" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="287" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\arrstr.h" line="289" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\longlong.h" line="238" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\longlong.h" line="466" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1021" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1022" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1023" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1024" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dynarray.h" line="1025" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1242" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1253" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1260" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1507" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1549" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="101" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="1109" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3248" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="3747" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="151" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="21" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="24" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="176" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filesys.h" line="176" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="30" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="30" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="34" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\html\htmlpars.h" line="34" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\encconv.h" line="44" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="189" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\image.h" line="189" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="163" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="167" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="208" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="212" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="251" id="unreadVariable" severity="style" msg="Variable 'holder' is assigned a value that is never used." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\textctrl.h" line="300" id="operatorEq" severity="style" msg='The wxTextAttr::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxTextAttr &wxTextAttr::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\ctrlsub.h" line="187" id="useInitializationList" severity="style" msg="When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'm_clientDataItemsType' a value by passing the value to the constructor in the initialization list." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\statbox.h" line="68" id="duplInheritedMember" severity="style" msg="The class 'wxRadioBox' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxStaticBox'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\textctrl.h" line="769" id="duplInheritedMember" severity="style" msg="The class 'wxTextCtrl' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxTextCtrlBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\control.h" line="132" id="duplInheritedMember" severity="style" msg="The class 'wxTextCtrlBase' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxControl'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxTextUrlEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxDialogLayoutAdapter' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dialog.h" line="287" id="duplInheritedMember" severity="style" msg="The class 'wxStandardDialogLayoutAdapter' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxDialogLayoutAdapter'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1577" id="duplInheritedMember" severity="style" msg="The class 'wxWindowModalDialogEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxCommandEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\radiobox.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'wxToolTipArray' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\radiobox.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\radiobox.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\textctrl.h" line="884" id="noExplicitConstructor" severity="style" msg="Class 'wxStreamToTextRedirector' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sharedptr.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'wxSharedPtr<T>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sharedptr.h" line="117" id="noExplicitConstructor" severity="style" msg="Struct 'reftype' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1195" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\list.h" line="1242" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gdicmn.h" line="690" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\gdiimage.h" line="26" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\variant.h" line="101" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\any.h" line="1109" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\window.h" line="151" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\datetime.h" line="1231" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\radiobox.h" line="26" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="tedevent.h" line="51" id="noExplicitConstructor" severity="style" msg="Class 'TEDEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="teletext40.cpp" line="114" id="invalidScanfArgType_int" severity="style" msg="%x in format string (no. 1) requires 'unsigned int *' but the argument type is 'signed int *'." />
<error file="teletext40.cpp" line="45" id="variableScope" severity="style" msg="The scope of the variable 'pos' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="ttxline.h" line="19" id="noExplicitConstructor" severity="style" msg="Class 'TTXLine' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="ttxrow28.h" line="13" id="noExplicitConstructor" severity="style" msg="Class 'TTXRow28' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="ttxline.cpp" line="60" id="variableScope" severity="style" msg="The scope of the variable 'ch' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="ttxline.cpp" line="99" id="variableScope" severity="style" msg="The scope of the variable 'ch' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="ttxline.cpp" line="118" id="variableScope" severity="style" msg="The scope of the variable 'ch' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="ttxline.cpp" line="35" id="uninitMemberVar" severity="style" msg="Member variable 'TTXLine::m_Counter' is not initialized in the constructor." />
<error file="ttxline.cpp" line="29" id="uninitMemberVar" severity="style" msg="Member variable 'TTXLine::m_Counter' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="160" id="unreachableCode" severity="style" msg="Statements following return, break, continue, goto or throw will never be executed." />
<error file="ttxpage.cpp" line="333" id="variableScope" severity="style" msg="The scope of the variable 'pageNum' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="ttxpage.cpp" line="1151" id="variableScope" severity="style" msg="The scope of the variable 'ch1' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="ttxpage.cpp" line="29" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_row28' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="29" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_loaded' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="605" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_row28' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_PageNumber' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_SubPage' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_pLine' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_row28' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_fastextlinks' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_cycletimeseconds' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_cycletimetype' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_subcode' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_pagestatus' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_region' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::instance' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="675" id="uninitMemberVar" severity="style" msg="Member variable 'TTXPage::m_loaded' is not initialized in the constructor." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_PageNumber' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_SubPage' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_pLine' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_row28' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_fastextlinks' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_cycletimeseconds' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_cycletimetype' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_subcode' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_pagestatus' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_region' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::instance' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::undoList' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_current' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="681" id="operatorEqVarError" severity="style" msg="Member variable 'TTXPage::m_loaded' is not assigned a value in 'TTXPage::operator='." />
<error file="ttxpage.cpp" line="605" id="passedByValue" severity="style" msg="Parameter 'filename' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="ttxpage.cpp" line="605" id="passedByValue" severity="style" msg="Parameter 'shortFilename' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="ttxrow28.cpp" line="9" id="passedByValue" severity="style" msg="Parameter 'line' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="36" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="37" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="67" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="94" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="115" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="121" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="149" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="331" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="261" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist.h" line="19" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\log.h" line="343" id="noCopyConstructor" severity="style" msg="'class wxLog' does not have a copy constructor which is recommended since the class contains a pointer to allocated memory." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxImageList' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1608" id="duplInheritedMember" severity="style" msg="The class 'wxBookCtrlEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxNotifyEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\control.h" line="132" id="duplInheritedMember" severity="style" msg="The class 'wxBookCtrlBase' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxControl'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\dialog.h" line="137" id="duplInheritedMember" severity="style" msg="The class 'wxFileDialogBase' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxDialog'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\filedlg.h" line="181" id="duplInheritedMember" severity="style" msg="The class 'wxFileDialog' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxFileDialogBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxTimerEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\event.h" line="1091" id="duplInheritedMember" severity="style" msg="The class 'wxClipboardEvent' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxEvent'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\frame.h" line="163" id="duplInheritedMember" severity="style" msg="The class 'wxTEDFrame' defines member variable with name 'sm_eventTable' also defined in its parent class 'wxFrame'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\frame.h" line="163" id="duplInheritedMember" severity="style" msg="The class 'wxTEDFrame' defines member variable with name 'sm_eventHashTable' also defined in its parent class 'wxFrame'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\log.h" line="732" id="noExplicitConstructor" severity="style" msg="Class 'wxLogStderr' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\log.h" line="750" id="noExplicitConstructor" severity="style" msg="Class 'wxLogStream' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\log.h" line="804" id="noExplicitConstructor" severity="style" msg="Class 'wxLogChain' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\generic\logg.h" line="32" id="noExplicitConstructor" severity="style" msg="Class 'wxLogTextCtrl' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\app.h" line="782" id="noExplicitConstructor" severity="style" msg="Class 'wxAppInitializer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\bookctrl.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'wxArrayPages' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\bookctrl.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\bookctrl.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="36" id="noExplicitConstructor" severity="style" msg="Class 'wxMenuList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="36" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="36" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="36" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="37" id="noExplicitConstructor" severity="style" msg="Class 'wxMenuItemList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="37" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="37" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="37" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="52" id="noExplicitConstructor" severity="style" msg="Class 'wxMenuBase' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\menu.h" line="18" id="noExplicitConstructor" severity="style" msg="Class 'wxAcceleratorArray' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\menu.h" line="18" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\menu.h" line="18" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\menu.h" line="55" id="noExplicitConstructor" severity="style" msg="Class 'wxMenu' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\menu.h" line="192" id="noExplicitConstructor" severity="style" msg="Class 'wxMenuBar' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\timer.h" line="129" id="noExplicitConstructor" severity="style" msg="Class 'wxTimerRunner' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\timer.h" line="165" id="noExplicitConstructor" severity="style" msg="Class 'wxTimerEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\ole\dataform.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'wxDataFormat' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\ole\dataform.h" line="29" id="noExplicitConstructor" severity="style" msg="Class 'wxDataFormat' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\ole\dataform.h" line="30" id="noExplicitConstructor" severity="style" msg="Class 'wxDataFormat' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\ole\dataform.h" line="31" id="noExplicitConstructor" severity="style" msg="Class 'wxDataFormat' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\ole\dataform.h" line="32" id="noExplicitConstructor" severity="style" msg="Class 'wxDataFormat' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="201" id="noExplicitConstructor" severity="style" msg="Class 'wxDataObjectSimple' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="261" id="noExplicitConstructor" severity="style" msg="Class 'wxSimpleDataObjectList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="261" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="261" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="261" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="341" id="noExplicitConstructor" severity="style" msg="Class 'wxHTMLDataObject' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="380" id="noExplicitConstructor" severity="style" msg="Class 'wxTextDataObject' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="448" id="noExplicitConstructor" severity="style" msg="Class 'wxBitmapDataObjectBase' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="497" id="noExplicitConstructor" severity="style" msg="Class 'wxCustomDataObject' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\ole\dataobj2.h" line="27" id="noExplicitConstructor" severity="style" msg="Class 'wxBitmapDataObject' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\ole\dataobj2.h" line="66" id="noExplicitConstructor" severity="style" msg="Class 'wxBitmapDataObject2' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\ole\dataobj2.h" line="125" id="noExplicitConstructor" severity="style" msg="Class 'wxURLDataObject' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clipbrd.h" line="106" id="noExplicitConstructor" severity="style" msg="Class 'wxClipboardEvent' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\clipbrd.h" line="177" id="noExplicitConstructor" severity="style" msg="Class 'wxClipboardLocker' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist.h" line="19" id="noExplicitConstructor" severity="style" msg="Class 'wxPersistentObjectsMap_wxImplementation_HashTable' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist.h" line="19" id="noExplicitConstructor" severity="style" msg="Struct 'Node' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist.h" line="19" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist.h" line="185" id="noExplicitConstructor" severity="style" msg="Class 'wxPersistentObject' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist\window.h" line="29" id="noExplicitConstructor" severity="style" msg="Class 'wxPersistentWindowBase' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\display.h" line="47" id="noExplicitConstructor" severity="style" msg="Class 'wxDisplay' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist\toplevel.h" line="44" id="noExplicitConstructor" severity="style" msg="Class 'wxPersistentTLW' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist\window.h" line="70" id="noExplicitConstructor" severity="style" msg="Class 'wxPersistentWindow<wxTopLevelWindow>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\vector.h" line="237" id="noExplicitConstructor" severity="style" msg="Class 'wxVector<wxDataFormat>' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\log.h" line="406" id="passedByValue" severity="style" msg="Parameter 'component' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist.h" line="19" id="passedByValue" severity="style" msg="Parameter 'i' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="wxTEDMain.cpp" line="339" id="incorrectLogicOperator" severity="style" msg="Logical conjunction always evaluates to false: k < 256 && k > 2303. Are these conditions necessary? Did you intend to use || instead? Are the numbers correct? Are you comparing the correct variables?" />
<error file="wxTEDMain.cpp" line="2466" id="incorrectLogicOperator" severity="style" msg="Logical conjunction always evaluates to false: k < 256 && k > 2303. Are these conditions necessary? Did you intend to use || instead? Are the numbers correct? Are you comparing the correct variables?" />
<error file="wxTEDMain.cpp" line="2536" id="incorrectLogicOperator" severity="style" msg="Logical conjunction always evaluates to false: k < 256 && k > 2303. Are these conditions necessary? Did you intend to use || instead? Are the numbers correct? Are you comparing the correct variables?" />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="171" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="176" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="209" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="211" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="213" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="215" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="219" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="221" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="223" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="225" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tbarbase.h" line="163" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tbarbase.h" line="272" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="488" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\generic\textdlgg.h" line="72" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="wxTEDMain.cpp" line="1466" id="cstyleCast" severity="style" msg="C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts." />
<error file="wxTEDMain.cpp" line="553" id="variableScope" severity="style" msg="The scope of the variable 'graphicsMode' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="wxTEDMain.cpp" line="554" id="variableScope" severity="style" msg="The scope of the variable 'separated' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="wxTEDMain.cpp" line="555" id="variableScope" severity="style" msg="The scope of the variable 'doubleHeight' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="wxTEDMain.cpp" line="556" id="variableScope" severity="style" msg="The scope of the variable 'skipnextrow' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="wxTEDMain.cpp" line="557" id="variableScope" severity="style" msg="The scope of the variable 'flashing' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="wxTEDMain.cpp" line="558" id="variableScope" severity="style" msg="The scope of the variable 'hold' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="wxTEDMain.cpp" line="559" id="variableScope" severity="style" msg="The scope of the variable 'holdChar' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="wxTEDMain.cpp" line="560" id="variableScope" severity="style" msg="The scope of the variable 'concealed' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:\012void f(int x)\012{\012 int i = 0;\012 if (x) {\012 // it's safe to move 'int i = 0;' here\012 for (int n = 0; n < 10; ++n) {\012 // it is possible but not safe to move 'int i = 0;' here\012 do_something(&i);\012 }\012 }\012}\012When you see this message it is always safe to reduce the variable scope 1 level." />
<error file="wxTEDMain.cpp" line="1424" id="arrayIndexOutOfBounds" severity="error" msg="Array 'm_fontSize[100]' accessed at index 100, which is out of bounds." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\gauge.h" line="52" id="uninitMemberVar" severity="style" msg="Member variable 'wxGaugeBase::m_nDirection' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\generic\dirdlgg.h" line="42" id="uninitMemberVar" severity="style" msg="Member variable 'wxGenericDirDialog::m_dirCtrl' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\generic\dirdlgg.h" line="42" id="uninitMemberVar" severity="style" msg="Member variable 'wxGenericDirDialog::m_input' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\generic\textdlgg.h" line="39" id="uninitMemberVar" severity="style" msg="Member variable 'wxTextEntryDialog::m_dialogStyle' is not initialized in the constructor." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\hash.h" line="195" id="operatorEq" severity="style" msg='The wxHashTable::operator= does not conform to standard C/C++ behaviour. To conform to standard C/C++ behaviour, return a reference to self (such as: 'wxHashTable &wxHashTable::operator=(..) { .. return *this; }'. For safety reasons it might be better to not fix this message. If you think that safety is always more important than conformance then please ignore/suppress this message. For more details about this topic, see the book "Effective C++" by Scott Meyers.' />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxLayoutConstraints' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxSizer' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="1013" id="duplInheritedMember" severity="style" msg="The class 'wxStdDialogButtonSizer' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxBoxSizer'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="723" id="duplInheritedMember" severity="style" msg="The class 'wxBoxSizer' defines member variable with name 'm_minSize' also defined in its parent class 'wxSizer'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="744" id="duplInheritedMember" severity="style" msg="The class 'wxBoxSizer' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxSizer'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcclient.h" line="27" id="duplInheritedMember" severity="style" msg="The class 'wxClientDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxWindowDC'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tbarbase.h" line="698" id="duplInheritedMember" severity="style" msg="The class 'wxToolBar' defines member variable with name 'sm_eventTable' also defined in its parent class 'wxToolBarBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tbarbase.h" line="698" id="duplInheritedMember" severity="style" msg="The class 'wxToolBar' defines member variable with name 'sm_eventHashTable' also defined in its parent class 'wxToolBarBase'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcclient.h" line="43" id="duplInheritedMember" severity="style" msg="The class 'wxPaintDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxClientDC'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="1376" id="duplInheritedMember" severity="style" msg="The class 'wxWindowDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxDC'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="1376" id="duplInheritedMember" severity="style" msg="The class 'wxScreenDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxDC'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="1376" id="duplInheritedMember" severity="style" msg="The class 'wxMemoryDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxDC'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="1376" id="duplInheritedMember" severity="style" msg="The class 'wxPrinterDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxDC'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxDCImpl' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\control.h" line="132" id="duplInheritedMember" severity="style" msg="The class 'wxRadioButton' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxControl'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxToolBarToolBase' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\choice.h" line="177" id="duplInheritedMember" severity="style" msg="The class 'wxComboBox' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxChoice'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxIndividualLayoutConstraint' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\object.h" line="357" id="duplInheritedMember" severity="style" msg="The class 'wxSizerItem' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxObject'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="744" id="duplInheritedMember" severity="style" msg="The class 'wxGridSizer' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxSizer'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="831" id="duplInheritedMember" severity="style" msg="The class 'wxFlexGridSizer' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxGridSizer'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="1013" id="duplInheritedMember" severity="style" msg="The class 'wxStaticBoxSizer' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxBoxSizer'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\validate.h" line="93" id="duplInheritedMember" severity="style" msg="The class 'wxTextValidator' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxValidator'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\dialog.h" line="137" id="duplInheritedMember" severity="style" msg="The class 'wxTextEntryDialog' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxDialog'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\generic\textdlgg.h" line="88" id="duplInheritedMember" severity="style" msg="The class 'wxPasswordEntryDialog' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxTextEntryDialog'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcmemory.h" line="39" id="duplInheritedMember" severity="style" msg="The class 'wxBufferedDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxMemoryDC'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcbuffer.h" line="138" id="duplInheritedMember" severity="style" msg="The class 'wxBufferedPaintDC' defines member variable with name 'ms_classInfo' also defined in its parent class 'wxBufferedDC'." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msgdlg.h" line="37" id="noExplicitConstructor" severity="style" msg="Class 'ButtonLabel' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msgdlg.h" line="43" id="noExplicitConstructor" severity="style" msg="Class 'ButtonLabel' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msgdlg.h" line="48" id="noExplicitConstructor" severity="style" msg="Class 'ButtonLabel' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msgdlg.h" line="53" id="noExplicitConstructor" severity="style" msg="Class 'ButtonLabel' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msgdlg.h" line="58" id="noExplicitConstructor" severity="style" msg="Class 'ButtonLabel' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\brush.h" line="30" id="noExplicitConstructor" severity="style" msg="Class 'wxBrush' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\geometry.h" line="42" id="noExplicitConstructor" severity="style" msg="Class 'wxPoint2DInt' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\geometry.h" line="292" id="noExplicitConstructor" severity="style" msg="Class 'wxPoint2DDouble' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\geometry.h" line="294" id="noExplicitConstructor" severity="style" msg="Class 'wxPoint2DDouble' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\geometry.h" line="655" id="noExplicitConstructor" severity="style" msg="Class 'wxRect2DInt' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="265" id="noExplicitConstructor" severity="style" msg="Class 'wxDCImpl' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="1371" id="noExplicitConstructor" severity="style" msg="Class 'wxDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="1326" id="noExplicitConstructor" severity="style" msg="Class 'TempHDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="1388" id="noExplicitConstructor" severity="style" msg="Class 'wxDCTextColourChanger' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dc.h" line="1501" id="noExplicitConstructor" severity="style" msg="Class 'wxDCFontChanger' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcclient.h" line="21" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcclient.h" line="24" id="noExplicitConstructor" severity="style" msg="Class 'wxWindowDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcclient.h" line="37" id="noExplicitConstructor" severity="style" msg="Class 'wxClientDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcclient.h" line="40" id="noExplicitConstructor" severity="style" msg="Class 'wxClientDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcclient.h" line="53" id="noExplicitConstructor" severity="style" msg="Class 'wxPaintDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcclient.h" line="56" id="noExplicitConstructor" severity="style" msg="Class 'wxPaintDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcmemory.h" line="25" id="noExplicitConstructor" severity="style" msg="Class 'wxMemoryDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcmemory.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'wxMemoryDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcprint.h" line="28" id="noExplicitConstructor" severity="style" msg="Class 'wxPrinterDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcprint.h" line="34" id="noExplicitConstructor" severity="style" msg="Class 'wxPrinterDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\listbox.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'wxListBoxItemsArray' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\listbox.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\listbox.h" line="26" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tbarbase.h" line="272" id="noExplicitConstructor" severity="style" msg="Class 'wxToolBarToolsList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tbarbase.h" line="272" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tbarbase.h" line="272" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\tbarbase.h" line="272" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="45" id="noExplicitConstructor" severity="style" msg="Class 'wxSizerFlags' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="232" id="noExplicitConstructor" severity="style" msg="Class 'wxSizerSpacer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="488" id="noExplicitConstructor" severity="style" msg="Class 'wxSizerItemList' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="488" id="noExplicitConstructor" severity="style" msg="Class 'compatibility_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="488" id="noExplicitConstructor" severity="style" msg="Class 'const_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="488" id="noExplicitConstructor" severity="style" msg="Class 'const_reverse_iterator' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\sizer.h" line="934" id="noExplicitConstructor" severity="style" msg="Class 'wxBoxSizer' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcbuffer.h" line="220" id="noExplicitConstructor" severity="style" msg="Class 'wxAutoBufferedPaintDC' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dcbuffer.h" line="191" id="clarifyCalculation" severity="style" msg="Suspicious calculation. Please use parentheses to clarify the code. The code ''a&b?c:d'' should be written as either ''(a&b)?c:d'' or ''a&(b?c:d)''." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\mdi.h" line="212" id="passedByValue" severity="style" msg="Parameter 'wxEmptyString' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="wxTEDMain.cpp" line="1202" id="passedByValue" severity="style" msg="Parameter 'initialPage' is passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="36" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="37" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="261" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\display.h" line="21" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\module.h" line="21" id="CastAddressToIntegerAtReturn" severity="style" msg="Returning an address value in a function with integer (int/long/etc) return type is not portable across different platforms and compilers. For example in 32-bit Windows and Linux they are same width, but in 64-bit Windows and Linux they are of different width. In worst case you end up casting 64-bit address down to 32-bit integer. The safe way is to always return an integer." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\bookctrl.h" line="26" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="36" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\menu.h" line="37" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\msw\menu.h" line="18" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\dataobj.h" line="261" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist.h" line="19" id="returnReference" severity="error" msg="Reference to auto variable returned." />
<error file="E:\dev\downloads\wxWidgets302\include\wx\persist.h" line="19" id="returnTempReference" severity="error" msg="Reference to temporary returned." />
<error file="tedevent.h" line="81" id="unusedFunction" severity="style" msg="The function 'CharIsNull' is never used." />
<error file="HelpFrame.cpp" line="12" id="unusedFunction" severity="style" msg="The function 'GetEventTable' is never used." />
<error file="ttxline.cpp" line="97" id="unusedFunction" severity="style" msg="The function 'GetMappedline' is never used." />
<error file="tedevent.h" line="65" id="unusedFunction" severity="style" msg="The function 'GetnextEvent' is never used." />
<error file="wxTEDMain.cpp" line="2575" id="unusedFunction" severity="style" msg="The function 'OnPanel1Paint1' is never used." />
<error file="wxTEDMain.h" line="76" id="unusedFunction" severity="style" msg="The function 'Page' is never used." />
<error file="charchange.h" line="41" id="unusedFunction" severity="style" msg="The function 'SetLoc' is never used." />
<error file="charchange.h" line="24" id="unusedFunction" severity="style" msg="The function 'Setnext' is never used." />
<error file="tedevent.cpp" line="20" id="unusedFunction" severity="style" msg="The function 'print' is never used." />
<error file="hamm.c" line="101" id="unusedFunction" severity="style" msg="The function 'vbi_ham24p' is never used." />
<error file="hamm.h" line="169" id="unusedFunction" severity="style" msg="The function 'vbi_ham8' is never used." />
<error file="hamm.c" line="45" id="unusedFunction" severity="style" msg="The function 'vbi_par' is never used." />
<error file="hamm.h" line="107" id="unusedFunction" severity="style" msg="The function 'vbi_par8' is never used." />
<error file="hamm.h" line="73" id="unusedFunction" severity="style" msg="The function 'vbi_rev16' is never used." />
<error file="hamm.h" line="91" id="unusedFunction" severity="style" msg="The function 'vbi_rev16p' is never used." />
<error file="hamm.h" line="57" id="unusedFunction" severity="style" msg="The function 'vbi_rev8' is never used." />
<error file="hamm.h" line="207" id="unusedFunction" severity="style" msg="The function 'vbi_unham16p' is never used." />
<error file="hamm.c" line="140" id="unusedFunction" severity="style" msg="The function 'vbi_unham24p' is never used." />
<error file="hamm.h" line="187" id="unusedFunction" severity="style" msg="The function 'vbi_unham8' is never used." />
<error file="hamm.c" line="71" id="unusedFunction" severity="style" msg="The function 'vbi_unpar' is never used." />
<error file="hamm.h" line="127" id="unusedFunction" severity="style" msg="The function 'vbi_unpar8' is never used." />
<error file="wxTEDApp.cpp" line="17" id="unusedFunction" severity="style" msg="The function 'wxGetApp' is never used." />
<error file="wxTEDMain.cpp" line="50" id="unusedFunction" severity="style" msg="The function 'wxbuildinfo' is never used." />
<error id="missingInclude" severity="style" msg="Cppcheck cannot find all the include files. Cppcheck can check the code without the include files found. But the results will probably be more accurate if all the include files are found. Please check your project's include directories and add all of them as include directories for Cppcheck. To see what files Cppcheck cannot find use --check-config." />
</results>