diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/win.c | 4 | ||||
-rw-r--r-- | src/x11.c | 6 | ||||
-rw-r--r-- | src/x11_cairo.c | 4 |
3 files changed, 7 insertions, 7 deletions
@@ -1561,8 +1561,8 @@ getInitialFrame(PuglView* const view) // Center the frame around the center of the bounding rectangle const LONG centerX = rect.left + (rect.right - rect.left) / 2; const LONG centerY = rect.top + (rect.bottom - rect.top) / 2; - const PuglRect frame = {(PuglCoord)(centerX - (defaultWidth / 2U)), - (PuglCoord)(centerY - (defaultHeight / 2U)), + const PuglRect frame = {(PuglCoord)(centerX - (defaultWidth / 2)), + (PuglCoord)(centerY - (defaultHeight / 2)), defaultWidth, defaultHeight}; return frame; @@ -510,8 +510,8 @@ getInitialFrame(PuglView* const view) // Center the frame within the parent bounds const int centerX = parentAttrs.x + parentAttrs.width / 2; const int centerY = parentAttrs.y + parentAttrs.height / 2; - const PuglRect frame = {(PuglCoord)(centerX - (defaultWidth / 2U)), - (PuglCoord)(centerY - (defaultHeight / 2U)), + const PuglRect frame = {(PuglCoord)(centerX - (defaultWidth / 2)), + (PuglCoord)(centerY - (defaultHeight / 2)), defaultWidth, defaultHeight}; return frame; @@ -1069,7 +1069,7 @@ makeConfigureEvent(PuglView* const view) } else if (view->impl->mapped) { event.configure.style |= PUGL_VIEW_STYLE_MAPPED; } else { - event.configure.style &= ~PUGL_VIEW_STYLE_MAPPED; + event.configure.style &= ~(PuglViewStyleFlags)PUGL_VIEW_STYLE_MAPPED; } return event; diff --git a/src/x11_cairo.c b/src/x11_cairo.c index eabf46f..e9d0cea 100644 --- a/src/x11_cairo.c +++ b/src/x11_cairo.c @@ -99,8 +99,8 @@ puglX11CairoEnter(PuglView* view, const PuglExposeEvent* expose) if (expose) { const PuglViewSize viewSize = puglX11CairoGetViewSize(view); - const PuglSpan right = expose->x + expose->width; - const PuglSpan bottom = expose->y + expose->height; + const PuglSpan right = (PuglSpan)(expose->x + expose->width); + const PuglSpan bottom = (PuglSpan)(expose->y + expose->height); const PuglSpan surfaceWidth = MAX(right, viewSize.width); const PuglSpan surfaceHeight = MAX(bottom, viewSize.height); if (!(st = puglX11CairoOpen(view, surfaceWidth, surfaceHeight))) { |