Skip to content
Snippets Groups Projects
Commit f0aa7314 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

warn if size of x and y series have different size

parent 3092dba5
No related branches found
No related tags found
No related merge requests found
...@@ -262,6 +262,9 @@ namespace onelabUtils { ...@@ -262,6 +262,9 @@ namespace onelabUtils {
for(unsigned int i = 0; i < y.size(); i++) x.push_back(i); for(unsigned int i = 0; i < y.size(); i++) x.push_back(i);
} }
if(x.size() && y.size()){ if(x.size() && y.size()){
if(x.size() != y.size())
Msg::Warning("X-Y data series have different length (%d != %d)",
(int)x.size(), (int)y.size());
if(view){ if(view){
view->getData()->setXY(x, y); view->getData()->setXY(x, y);
view->getData()->setName(yName); view->getData()->setName(yName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment