diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-24 01:13:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-24 01:13:26 +0300 |
commit | 1498a699f89f7b5aebdc4629c645c3702ee04f92 (patch) | |
tree | 24d74cc7efc31ba2447c76ad301e3192e38b4cf4 /src/text.h | |
parent | c551f8981eba838d07245d1597e9deaa00427cee (diff) | |
download | plus-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.gz plus-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.bz2 plus-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.xz plus-1498a699f89f7b5aebdc4629c645c3702ee04f92.zip |
Add A_NONNULL attribute to all parameters with class Graphics.
Diffstat (limited to 'src/text.h')
-rw-r--r-- | src/text.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/text.h b/src/text.h index fc9b0f08c..ae53a5984 100644 --- a/src/text.h +++ b/src/text.h @@ -74,7 +74,7 @@ class Text notfinal * Draws the text. */ virtual void draw(Graphics *const graphics, - const int xOff, const int yOff); + const int xOff, const int yOff) A_NONNULL(2); private: Font *mFont; /**< The font of the text */ @@ -121,7 +121,7 @@ class FlashText final : public Text * Draws the text. */ void draw(Graphics *const graphics, - const int xOff, const int yOff) override final; + const int xOff, const int yOff) override final A_NONNULL(2); private: int mTime; /**< Time left for flashing */ |