remove extra debug line in InterfaceView

This commit is contained in:
Stephen Birarda 2015-01-28 15:26:51 -08:00
parent 3dd0b85ca4
commit 8c1007f131

View file

@ -9,12 +9,10 @@
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
// //
#include <QtCore/QDebug>
#include "InterfaceView.h" #include "InterfaceView.h"
InterfaceView::InterfaceView(QWidget* parent, Qt::WindowFlags flags) : InterfaceView::InterfaceView(QWidget* parent, Qt::WindowFlags flags) :
QOpenGLWidget(parent, flags) QOpenGLWidget(parent, flags)
{ {
qDebug() << "The interface view is alive!";
} }