More temporary but annoying debug messages

This commit is contained in:
Mark Watkins 2011-07-21 22:17:35 +10:00
parent 02887507c7
commit 5b18435f3f
2 changed files with 3 additions and 0 deletions

View File

@ -157,6 +157,7 @@ int PRS1Loader::Open(QString & path,Profile *profile)
delete m;
}
}
qDebug() << "Open() Done";
return PRS1List.size();
}
@ -387,6 +388,7 @@ int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile)
m->properties["DataVersion"]=s;
m->Save(); // Save any new sessions to disk in our format
if (qprogress) qprogress->setValue(100);
qDebug() << "OpenMachine Done";
return true;
}

View File

@ -213,6 +213,7 @@ int Profile::Import(QString path)
for (list<MachineLoader *>::iterator i=loaders.begin(); i!=loaders.end(); i++) {
if (c+=(*i)->Open(path,this)) break;
}
qDebug() << "Import Done";
return c;
}