Skip to content

Commit 25af75e

Browse files
authored
fixed #13984 - ThreadResult: some members were not initialized (danmar#7648)
1 parent 0eb4dd8 commit 25af75e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gui/threadresult.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ public slots:
137137
*
138138
*/
139139
std::list<FileWithDetails> mFiles;
140-
std::list<FileWithDetails>::const_iterator mItNextFile;
140+
std::list<FileWithDetails>::const_iterator mItNextFile{mFiles.cbegin()};
141141

142142
std::list<FileSettings> mFileSettings;
143-
std::list<FileSettings>::const_iterator mItNextFileSettings;
143+
std::list<FileSettings>::const_iterator mItNextFileSettings{mFileSettings.cbegin()};
144144

145145
/**
146146
* @brief Max progress

0 commit comments

Comments
 (0)