Skip to content

Commit

Permalink
Fix initialization of ThemeChooser::m_downloadState.
Browse files Browse the repository at this point in the history
Fixes coverity issue 1442853.
  • Loading branch information
linuxdude42 committed Feb 27, 2019
1 parent 6fae9af commit 4bb310b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythfrontend/themechooser.h
Expand Up @@ -87,8 +87,8 @@ class ThemeChooser : public MythScreenType
QMap<QString, ThemeInfo*> m_themeFileNameInfos;
QMap<QString, QString> m_themeStatuses;
ThemeInfo *m_downloadTheme {nullptr};
QString m_downloadFile {dsIdle};
DownloadState m_downloadState;
QString m_downloadFile;
DownloadState m_downloadState {dsIdle};

MythDialogBox *m_popupMenu {nullptr};
};
Expand Down

0 comments on commit 4bb310b

Please sign in to comment.