dtprintinfo: Resolve uninitialized warnings

This commit is contained in:
Peter Howkins
2021-12-22 01:17:10 +00:00
committed by Jon Trulson
parent 284c760616
commit 3600e87527
10 changed files with 19 additions and 19 deletions

View File

@@ -1056,7 +1056,7 @@ CalculateSize(
Window junkwin;
int x, y;
Boolean show_fields = False;
Dimension _width;
Dimension _width = 0;
if (query_geometry)
{
@@ -1361,7 +1361,7 @@ CalculateSize(
XSetClipOrigin(XtDisplay(w), MaskStippleGC(w), PixmapX(w), PixmapY(w));
if (StatePixmap(w) != XmUNSPECIFIED_PIXMAP)
{
Dimension x_offset, y_offset;
Dimension x_offset = 0, y_offset = 0;
XGetGeometry(XtDisplay(w), StatePixmap(w), &junkwin,
(int *) &junk, (int *) &junk, &width, &height, &junk, &junk);
@@ -2001,7 +2001,7 @@ QueryGeometry(
XtWidgetGeometry *desired
)
{
Dimension width, width1, height, height1;
Dimension width = 0, width1, height = 0, height1;
Boolean show_fields = False;
width1 = Max(TopLabelWidth(w), BottomLabelWidth(w));