diff options
author | David Robillard <d@drobilla.net> | 2025-01-22 18:42:12 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-22 18:42:12 -0500 |
commit | 8905c1176aa5099545fd9abb2e673efc136d0311 (patch) | |
tree | 5bc2b2e01d0583147089ca910aac3880b5404089 /src/types.h | |
parent | 1dce4defe62b5e0ed70460b52c444dc51a701e18 (diff) | |
download | pugl-8905c1176aa5099545fd9abb2e673efc136d0311.tar.gz pugl-8905c1176aa5099545fd9abb2e673efc136d0311.tar.bz2 pugl-8905c1176aa5099545fd9abb2e673efc136d0311.zip |
Rename PuglViewSize to PuglArea
Diffstat (limited to 'src/types.h')
-rw-r--r-- | src/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types.h b/src/types.h index 9817474..bbebbb7 100644 --- a/src/types.h +++ b/src/types.h @@ -31,7 +31,7 @@ typedef struct { typedef struct { PuglSpan width; PuglSpan height; -} PuglViewSize; +} PuglArea; /// Blob of arbitrary data typedef struct { @@ -57,7 +57,7 @@ struct PuglViewImpl { uintptr_t transientParent; PuglConfigureEvent lastConfigure; PuglHints hints; - PuglViewSize sizeHints[PUGL_NUM_SIZE_HINTS]; + PuglArea sizeHints[PUGL_NUM_SIZE_HINTS]; char* strings[PUGL_NUM_STRING_HINTS]; int defaultX; int defaultY; |