File tree Expand file tree Collapse file tree
source/frontend/views/snapshot Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -283,15 +283,15 @@ void ResourceListPane::DumpResources()
283283 QTextStream Stream (&File);
284284 auto proxy_model_ = model_->GetResourceProxyModel ();
285285
286- for (int32_t j = rmv::kResourceColumnName ; j < rmv::kResourceColumnMappedNone ; j++)
286+ for (int32_t j = rmv::kResourceColumnName ; j <= rmv::kResourceColumnMappedNone ; j++)
287287 {
288288 Stream << proxy_model_->headerData (j, Qt::Horizontal).toString () << " ," ;
289289 }
290290 Stream << " \n " ;
291291
292292 for (int32_t i = 0 ; i < proxy_model_->rowCount (); i++)
293293 {
294- for (int32_t j = rmv::kResourceColumnName ; j < rmv::kResourceColumnMappedNone ; j++)
294+ for (int32_t j = rmv::kResourceColumnName ; j <= rmv::kResourceColumnMappedNone ; j++)
295295 {
296296 Stream << proxy_model_->GetDataAsStr (i, j) << " ," ;
297297 }
You can’t perform that action at this time.
0 commit comments