diff options
author | 2023-05-25 22:49:12 +0200 | |
---|---|---|
committer | 2023-05-25 22:49:12 +0200 | |
commit | 4a378e56cd5b2c97207169bab2365e0897436df5 (patch) | |
tree | 2d8d5925dba736ba65d523b464fba67baa5cd461 /src | |
parent | e09646784a64621fa6911fcc7a812ab7851e55e2 (diff) | |
download | cherry-4a378e56cd5b2c97207169bab2365e0897436df5.tar.gz cherry-4a378e56cd5b2c97207169bab2365e0897436df5.zip |
Rename a variable
Diffstat (limited to 'src')
-rw-r--r-- | src/widget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget.h b/src/widget.h index ac5bc4b..a54d2d1 100644 --- a/src/widget.h +++ b/src/widget.h @@ -12,7 +12,7 @@ typedef struct CherryWidget { int x, y; /* Coordinates */ CherryDimension *dimension; /* Size of the widget */ int visible; /* Is this visible? */ - list_t components; /* A list of children widgets */ + list_t widgets; /* A list of children widgets */ /* Xlib stuff */ // XSizeHints hints; |