[Thplot-cvs] CVS: thplot/src/Gui MainWindow.cpp,1.3,1.4 ParameterSelect.cpp,1.4,1.5
Status: Pre-Alpha
Brought to you by:
apeden
From: Tony P. <ap...@us...> - 2002-07-03 16:14:02
|
Update of /cvsroot/thplot/thplot/src/Gui In directory usw-pr-cvs1:/tmp/cvs-serv4831/src/Gui Modified Files: MainWindow.cpp ParameterSelect.cpp Log Message: Removed couts Index: MainWindow.cpp =================================================================== RCS file: /cvsroot/thplot/thplot/src/Gui/MainWindow.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** MainWindow.cpp 3 Jul 2002 13:32:56 -0000 1.3 --- MainWindow.cpp 3 Jul 2002 16:13:59 -0000 1.4 *************** *** 56,64 **** flc->preview(0); - //cout << data << endl; } MainWindow::~MainWindow(void) { - //cout << "In ~MainWindow" << endl; delete flc; delete csvdata; --- 56,62 ---- *************** *** 91,95 **** void MainWindow::file_chooser_cb(Fl_File_Chooser* flw) { - cout << flc->value() << endl; } --- 89,92 ---- *************** *** 112,116 **** ps->showDialog(csvdata); if( ps->selectionAvailable() ) { - cout << "Calling setData()" << endl; glw->getPlot()->getGrid(0)->setData(csvdata, ps->getSelectedIndependent(), --- 109,112 ---- Index: ParameterSelect.cpp =================================================================== RCS file: /cvsroot/thplot/thplot/src/Gui/ParameterSelect.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** ParameterSelect.cpp 3 Jul 2002 13:24:50 -0000 1.4 --- ParameterSelect.cpp 3 Jul 2002 16:13:59 -0000 1.5 *************** *** 147,151 **** void ParameterSelect::cancel_callback(Fl_Widget* flw) { - cout << "In Cancel callback" << endl; run=false; ind_name = ""; --- 147,150 ---- *************** *** 154,162 **** void ParameterSelect::ok_callback(Fl_Widget* flw) { - cout << "In OK callback" << endl; if ( independent->size() ) { ind_name = independent->text( 1 ); - cout << ind_name << ", " << dependent->size() << endl; for(int i=1;i<=dependent->size();i++) { if(dependent->text(i) ) { --- 153,159 ---- |