diff options
Diffstat (limited to 'src/gui/windows/updaterwindow.h')
-rw-r--r-- | src/gui/windows/updaterwindow.h | 12 |
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; |