diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-24 01:38:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-25 15:07:14 +0300 |
commit | 233f2b564e7707f79deb493444f28363ac10bfd4 (patch) | |
tree | ee9d960c24e68f7ce9da05ee9a0333a74615565d /src/gui/widgets/layoutarray.h | |
parent | 1498a699f89f7b5aebdc4629c645c3702ee04f92 (diff) | |
download | plus-233f2b564e7707f79deb493444f28363ac10bfd4.tar.gz plus-233f2b564e7707f79deb493444f28363ac10bfd4.tar.bz2 plus-233f2b564e7707f79deb493444f28363ac10bfd4.tar.xz plus-233f2b564e7707f79deb493444f28363ac10bfd4.zip |
Add missing checks on nonnull attributes to widgets.
Diffstat (limited to 'src/gui/widgets/layoutarray.h')
-rw-r--r-- | src/gui/widgets/layoutarray.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui/widgets/layoutarray.h b/src/gui/widgets/layoutarray.h index 4658e8c75..63d0912d1 100644 --- a/src/gui/widgets/layoutarray.h +++ b/src/gui/widgets/layoutarray.h @@ -93,9 +93,12 @@ class LayoutArray final /** * Gets the position and size of a widget along a given axis */ - void align(int &restrict pos, int &restrict size, const int dim, + void align(int &restrict pos, + int &restrict size, + const int dim, LayoutCell const &restrict cell, - const int *restrict const sizes, const int sizeCount) const; + const int *restrict const sizes, + const int sizeCount) const A_NONNULL(6); /** * Ensures the private vectors are large enough. |