Nuke several annoying and no longer necessary debug output statements

This commit is contained in:
2015-06-05 18:44:57 -04:00
parent 02f16964f2
commit fdbb61411b
6 changed files with 0 additions and 9 deletions

View File

@@ -838,7 +838,6 @@ void cDialog::loadFromFile(std::string path){
fname = path;
fs::path cPath = progDir/"data"/"dialogs"/path;
try{
std::cout << "Loading dialog from: " << cPath << std::endl;
TiXmlBase::SetCondenseWhiteSpace(false);
Document xml(cPath.string().c_str());
xml.LoadFile();
@@ -975,7 +974,6 @@ void cDialog::loadFromFile(std::string path){
void cDialog::recalcRect(){
ctrlIter iter = controls.begin();
while(iter != controls.end()){
std::cout << typeid(*(iter->second)).name() << " \"" << iter->first << "\"\n";
rectangle frame = iter->second->getBounds();
if(frame.right > winRect.right)
winRect.right = frame.right;