Skip to content

Commit

Permalink
refs #4328. Fix type conversion warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Jan 6, 2012
1 parent 66fd7de commit d76c05c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ void CreateMDWorkspace::createMDWorkspaceClicked()
//1) Run a top-level dialog similar to ConvertToMDEvents. Extract all required arguments.

//2) Run ConvertToMDEvents on each workspace.
for(int i = 0; i < m_data.size(); i++)
for(WorkspaceMementoCollection::size_type i = 0; i < m_data.size(); i++)
{
//Workspace_sptr ws = m_data[i]->applyActions();
//QString command = ""
Expand Down

0 comments on commit d76c05c

Please sign in to comment.