diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-20 16:12:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-20 16:12:52 +0300 |
commit | 6073c6da086f3d1eec0fed731dc3fa5d8808fa0d (patch) | |
tree | eb4b3ee40202a8b982de3772152643e70ebd4118 /src/gui/windows/killstats.h | |
parent | cc939bec81af517d0e430064d872e3388116d16e (diff) | |
download | plus-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.gz plus-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.bz2 plus-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.tar.xz plus-6073c6da086f3d1eec0fed731dc3fa5d8808fa0d.zip |
Add missing checks or attributes to windows.
Diffstat (limited to 'src/gui/windows/killstats.h')
-rw-r--r-- | src/gui/windows/killstats.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/gui/windows/killstats.h b/src/gui/windows/killstats.h index ef784acf5..5b6b9bece 100644 --- a/src/gui/windows/killstats.h +++ b/src/gui/windows/killstats.h @@ -74,24 +74,24 @@ class KillStats final : public Window, private: int mKillTimer; /**< Timer for kill stats. */ - Button *mResetButton; - Button *mTimerButton; + Button *mResetButton A_NONNULLPOINTER; + Button *mTimerButton A_NONNULLPOINTER; Label *mLine1; Label *mLine2; Label *mLine3; - Label *mLine4; - Label *mLine5; - Label *mLine6; - Label *mLine7; - - Label *mExpSpeed1Label; - Label *mExpTime1Label; - Label *mExpSpeed5Label; - Label *mExpTime5Label; - Label *mExpSpeed15Label; - Label *mExpTime15Label; - - Label *mLastKillExpLabel; + Label *mLine4 A_NONNULLPOINTER; + Label *mLine5 A_NONNULLPOINTER; + Label *mLine6 A_NONNULLPOINTER; + Label *mLine7 A_NONNULLPOINTER; + + Label *mExpSpeed1Label A_NONNULLPOINTER; + Label *mExpTime1Label A_NONNULLPOINTER; + Label *mExpSpeed5Label A_NONNULLPOINTER; + Label *mExpTime5Label A_NONNULLPOINTER; + Label *mExpSpeed15Label A_NONNULLPOINTER; + Label *mExpTime15Label A_NONNULLPOINTER; + + Label *mLastKillExpLabel A_NONNULLPOINTER; int mKillCounter; /**< Session Kill counter. */ int mExpCounter; /**< Session Exp counter. */ |