diff options
Diffstat (limited to 'src/internal.c')
-rw-r--r-- | src/internal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/internal.c b/src/internal.c index dfea0ca..1a7b61f 100644 --- a/src/internal.c +++ b/src/internal.c @@ -13,7 +13,7 @@ #include <string.h> bool -puglIsValidSize(const PuglViewSize size) +puglIsValidArea(const PuglArea size) { return size.width && size.height; } @@ -175,7 +175,7 @@ puglPreRealize(PuglView* const view) } // Ensure that the default size is set to a valid size - if (!puglIsValidSize(view->sizeHints[PUGL_DEFAULT_SIZE])) { + if (!puglIsValidArea(view->sizeHints[PUGL_DEFAULT_SIZE])) { return PUGL_BAD_CONFIGURATION; } |