summaryrefslogtreecommitdiff
path: root/src/gui/windows/updaterwindow.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/updaterwindow.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/updaterwindow.h')
-rw-r--r--src/gui/windows/updaterwindow.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/windows/updaterwindow.h b/src/gui/windows/updaterwindow.h
index 6484fe09d..7c70817b0 100644
--- a/src/gui/windows/updaterwindow.h
+++ b/src/gui/windows/updaterwindow.h
@@ -225,12 +225,12 @@ class UpdaterWindow final : public Window,
std::string mUpdateServerPath;
- Label *mLabel; /**< Progress bar caption. */
- Button *mCancelButton; /**< Button to stop the update process. */
- Button *mPlayButton; /**< Button to start playing. */
- ProgressBar *mProgressBar; /**< Update progress bar. */
- BrowserBox *mBrowserBox; /**< Box to display news. */
- ScrollArea *mScrollArea; /**< Used to scroll news box. */
+ Label *mLabel A_NONNULLPOINTER;
+ Button *mCancelButton A_NONNULLPOINTER;
+ Button *mPlayButton A_NONNULLPOINTER;
+ ProgressBar *mProgressBar A_NONNULLPOINTER;
+ BrowserBox *mBrowserBox A_NONNULLPOINTER;
+ ScrollArea *mScrollArea A_NONNULLPOINTER;
/** Status of the current download. */
UpdateDownloadStatus mDownloadStatus;