Remove some left over debugging output.

This commit is contained in:
dt
2009-09-23 15:09:19 +02:00
parent 45de01ee73
commit 6aeb09a064
2 changed files with 0 additions and 4 deletions

View File

@@ -72,7 +72,6 @@ void ApplicationLauncher::setEnvironment(const QStringList &env)
void ApplicationLauncher::start(Mode mode, const QString &program, const QStringList &args)
{
qDebug()<<"ApplicationLauncher::start"<<program<<args;
m_currentMode = mode;
if (mode == Gui) {
m_winGuiProcess->start(program, args);

View File

@@ -535,8 +535,6 @@ void ProjectComboBox::projectRemoved(ProjectExplorer::Project *p)
break;
}
qDebug()<<"aboutToRemoveProject current index is"<<currentIndex();
// Comboboxes don't emit a signal if the index did't actually change
if (count() == 0) {
itemActivated(-1);
@@ -548,7 +546,6 @@ void ProjectComboBox::projectRemoved(ProjectExplorer::Project *p)
void ProjectComboBox::itemActivated(int index)
{
qDebug()<<"itemActivated"<<index;
Project *p = 0;
QList<Project *> projects = ProjectExplorerPlugin::instance()->session()->projects();
if (index != -1 && index < projects.size())