summaryrefslogtreecommitdiff
path: root/src/gui/windows/whoisonline.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-20 16:12:52 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-20 16:12:52 +0300
commit6073c6da086f3d1eec0fed731dc3fa5d8808fa0d (patch)
treeeb4b3ee40202a8b982de3772152643e70ebd4118 /src/gui/windows/whoisonline.h
parentcc939bec81af517d0e430064d872e3388116d16e (diff)
downloadplus-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/whoisonline.h')
-rw-r--r--src/gui/windows/whoisonline.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/windows/whoisonline.h b/src/gui/windows/whoisonline.h
index 8ec7d3c2d..f5183ad92 100644
--- a/src/gui/windows/whoisonline.h
+++ b/src/gui/windows/whoisonline.h
@@ -144,14 +144,15 @@ class WhoIsOnline final : public Window,
char *mMemoryBuffer;
/** Buffer to handler human readable error provided by curl. */
- char *mCurlError;
+ char *mCurlError A_NONNULLPOINTER;
+
+ BrowserBox *mBrowserBox A_NONNULLPOINTER;
+ ScrollArea *mScrollArea A_NONNULLPOINTER;
+ Button *mUpdateButton A_NONNULLPOINTER;
- BrowserBox *mBrowserBox;
- ScrollArea *mScrollArea;
std::set<OnlinePlayer*> mOnlinePlayers;
std::set<std::string> mOnlineNicks;
- Button *mUpdateButton;
std::vector<OnlinePlayer*> mFriends;
std::vector<OnlinePlayer*> mNeutral;
std::vector<OnlinePlayer*> mDisregard;