Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
corrected some warnings
[blast.git] / MainWindow.cpp
index 4be284b68cb1d8d4b738f81f47bf92f1683ffe3b..e7724255ddb2be2854b9a063a2e3df2dd385b736 100644 (file)
@@ -280,7 +280,7 @@ void MainWindow::slotLoadProject(){
       msgBox.setStandardButtons(QMessageBox::Cancel);
       msgBox.setDefaultButton(QMessageBox::Cancel);
 
-      int ret = msgBox.exec();
+      msgBox.exec();
     }
   }
 }
@@ -373,7 +373,12 @@ void MainWindow::slotOpenBlockLibrary() {
 
 
 void MainWindow::slotGraphValidation() {
-  params->parametersValidation();
+  try {
+    params->getGraph()->computeOutputPatterns(5); 
+  }
+  catch(Exception e) {
+    cerr << qPrintable(e.getMessage()) << endl;    
+  }
 }
 
 void MainWindow::addTopGroup(GroupWidget *_topGroup) {