Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/UIElements/TextUI/Query/ElementsTextQuery.cpp

    rd754bb r8df74d  
    2323#include <boost/lexical_cast.hpp>
    2424
    25 #include "TextUI/Query/TextQuery.hpp"
     25#include "TextUI/TextDialog.hpp"
    2626
    2727#include "Helpers/Log.hpp"
     
    4545  std::string shorthand;
    4646  int Z=-1;
    47   std::cout << getDescription() << ": ";
     47  Log() << Verbose(0) << getTitle();
    4848  std::string line;
    49   getline(std::cin,line);
     49  getline(cin,line);
    5050  // dissect by " "
    5151  std::string::iterator olditer = line.begin();
     
    6161      };
    6262      if(!temp && Z!=-1){
    63         std::cout << "Invalid Element" << shorthand << std::endl;
     63        Log() << Verbose(0) << "Invalid Element" << shorthand << endl;
    6464        break;
    6565      }
     
    7878    };
    7979    if(!temp && Z!=-1) {
    80       std::cout << "Invalid Element" << shorthand << std::endl;
     80      Log() << Verbose(0) << "Invalid Element" << shorthand << endl;
    8181      tmp.push_back(temp);
    8282    }
Note: See TracChangeset for help on using the changeset viewer.