Browse Source

Merge pull request #108 from nonlin-lin-chaos-order-etc-etal/upstreammaster

Fix saving configs
master
orignal 2 weeks ago committed by GitHub
parent
commit
eb6dd5f70f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/mainwindow.h

2
src/mainwindow.h

@ -160,7 +160,7 @@ public: @@ -160,7 +160,7 @@ public:
out << boost::any_cast<int>(optionValue);
}else if(isType<unsigned long>(optionValue)) {
out << boost::any_cast<unsigned long>(optionValue);
}if(isType<unsigned int>(optionValue)) {
}else if(isType<unsigned int>(optionValue)) {
out << boost::any_cast<unsigned int>(optionValue);
}else if(isType<unsigned short>(optionValue)) {
out << boost::any_cast<unsigned short>(optionValue);

Loading…
Cancel
Save