dtmail: resolve coverity warnings related to uninitialised members in C++ classes

This commit is contained in:
Peter Howkins
2018-04-20 02:36:24 +01:00
parent 3464e80165
commit f905d25392
31 changed files with 199 additions and 2 deletions

View File

@@ -69,7 +69,9 @@
#define PIXMAPSIZE 50
BusyPixmap::BusyPixmap ( Widget w ) :
PixmapCycler ( NUMPIXMAPS, PIXMAPSIZE, PIXMAPSIZE )
PixmapCycler ( NUMPIXMAPS, PIXMAPSIZE, PIXMAPSIZE ),
_gc(NULL),
_inverseGC(NULL)
{
_w = w;
}