Changeset 390 in PSPA


Ignore:
Timestamp:
Mar 13, 2013, 12:09:28 PM (11 years ago)
Author:
garnier
Message:

testing

Location:
Interface_Web/branches/12_03_12-managerComboBox/pspaWT/sources
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Interface_Web/branches/12_03_12-managerComboBox/pspaWT/sources/controler/src/dataManager.cc

    r388 r390  
    133133     
    134134      if (softw == NULL) {
    135         success = false;
    136         consoleMessage("dataManager::executeAll : unknown software");
    137         break;
    138       }
    139        
     135        success = false;
     136        consoleMessage("dataManager::executeAll : unknown software");
     137        break;
     138      }
     139     
    140140      success = softw->createInputFile(currentBeam_,debut,fin,workingDir);
    141141      if ( success ) {
    142         success = softw->execute(debut,fin,workingDir);
    143         if ( success ) {
    144           success = softw->buildBeamAfterElements(debut,fin,diagnosticBeam_,workingDir);
    145         }
    146       }
    147        
     142        success = softw->execute(debut,fin,workingDir);
     143        if ( success ) {
     144          success = softw->buildBeamAfterElements(debut,fin,diagnosticBeam_,workingDir);
     145        }
     146      }
     147     
    148148      delete softw;
    149149      if ( success ) {
  • Interface_Web/branches/12_03_12-managerComboBox/pspaWT/sources/userInterface/src/GWt_sectionToExecute.cc

    r388 r390  
    99software(soft)
    1010{
    11     addWidget(new Wt::WText(" from : "));
     11    addWidget(new Wt::WText(" fromC : "));
    1212    addWidget(first);
    13     addWidget(new Wt::WText(" to : "));
     13    addWidget(new Wt::WText(" toC : "));
    1414    addWidget(last);
    1515    addWidget(soft);
     
    2323software(soft)
    2424{;
    25     addWidget(new Wt::WText(" from : "));
     25    addWidget(new Wt::WText(" fromLE : "));
    2626    addWidget(first);
    27     addWidget(new Wt::WText(" to : "));
     27    addWidget(new Wt::WText(" toLE : "));
    2828    addWidget(last);
    2929    addWidget(soft);
  • Interface_Web/branches/12_03_12-managerComboBox/pspaWT/sources/userInterface/src/GWt_softwarePanel.cc

    r388 r390  
    281281  if (sections.size() > 0) {
    282282    sections[0]->setFirstElementLineEditCurrentText(premier);
     283//...
    283284  }
    284285 
     
    293294    if (sections.size() > 0) {
    294295      sections[0]->setLastElementLineEditCurrentText(currentString);
    295     }
    296   }
    297 //  current++;
     296//...
     297    }
     298  }
     299  current++;
    298300  currentString = dtmanage_->getLabelFromElementNumero(current);
    299301 
     
    310312     
    311313      sections[a]->setFirstElementLineEditCurrentText(currentString);
     314//...
    312315      // fin
    313316      string finString =  sections[a]->getLastElementLineEditCurrentText().toUTF8();
     
    410413      sections[0]->setFirstElementLineEditCurrentText(premierText);
    411414      sections[0]->setLastElementLineEditCurrentText(dernierText);
     415//...
    412416    }
    413417}
Note: See TracChangeset for help on using the changeset viewer.