Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
a3eede16
Commit
a3eede16
authored
Apr 13, 2015
by
Manuel Grizonnet
Browse files
ENH: tipo in choice parameter exception message
parent
72eb670e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Modules/Wrappers/ApplicationEngine/src/otbWrapperListViewParameter.cxx
View file @
a3eede16
...
...
@@ -174,7 +174,7 @@ ListViewParameter::SetSelectedItemsByNames()
oss
<<
", "
;
}
}
itkExceptionMacro
(
"Value "
<<
selectedName
<<
" not found in the
choices possibilities
"
<<
oss
.
str
()
<<
"."
);
itkExceptionMacro
(
"Value "
<<
selectedName
<<
" not found in the
list of choices:
"
<<
oss
.
str
()
<<
"."
);
}
}
this
->
SetSelectedItems
(
selectedItems
);
...
...
@@ -210,7 +210,7 @@ ListViewParameter::SetSelectedItemsByKeys()
oss
<<
", "
;
}
}
itkExceptionMacro
(
"Value "
<<
selectedKey
<<
" not found in the
choices possibilities
"
<<
oss
.
str
()
<<
"."
);
itkExceptionMacro
(
"Value "
<<
selectedKey
<<
" not found in the
list of choices:
"
<<
oss
.
str
()
<<
"."
);
}
}
this
->
SetSelectedItems
(
selectedItems
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment