From 6aeb09a0640359d3d712921e7027afadb0831a3c Mon Sep 17 00:00:00 2001
From: dt <qtc-committer@nokia.com>
Date: Wed, 23 Sep 2009 15:09:19 +0200
Subject: [PATCH] Remove some left over debugging output.

---
 src/plugins/projectexplorer/applicationlauncher_win.cpp | 1 -
 src/plugins/projectexplorer/projectwindow.cpp           | 3 ---
 2 files changed, 4 deletions(-)

diff --git a/src/plugins/projectexplorer/applicationlauncher_win.cpp b/src/plugins/projectexplorer/applicationlauncher_win.cpp
index c185bbde16e..7880465a2f2 100644
--- a/src/plugins/projectexplorer/applicationlauncher_win.cpp
+++ b/src/plugins/projectexplorer/applicationlauncher_win.cpp
@@ -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);
diff --git a/src/plugins/projectexplorer/projectwindow.cpp b/src/plugins/projectexplorer/projectwindow.cpp
index 8e2c5a72ba8..d71ad55cea0 100644
--- a/src/plugins/projectexplorer/projectwindow.cpp
+++ b/src/plugins/projectexplorer/projectwindow.cpp
@@ -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())
-- 
GitLab