1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

GCS/coreplugin: Remove qDebug() line in modemanager.cpp

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@363 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
ephy 2010-03-21 17:31:07 +00:00 committed by ephy
parent 284d4feed2
commit 1b0358cab3

View File

@ -103,7 +103,7 @@ int ModeManager::indexOf(const QString &id) const
if (m_modes.at(i)->uniqueModeName() == id)
return i;
}
qDebug() << "Warning, no such mode:" << id;
// qDebug() << "Warning, no such mode:" << id;
return -1;
}