removes no longer required debug prints

This commit is contained in:
mfreiholz
2016-04-06 06:55:27 +02:00
parent f110ad8ec7
commit 0eea083f07
7 changed files with 2 additions and 38 deletions

View File

@@ -1,6 +1,5 @@
#include "ads/SectionContentWidget.h"
#include <QDebug>
#include <QBoxLayout>
ADS_NAMESPACE_BEGIN
@@ -9,8 +8,6 @@ SectionContentWidget::SectionContentWidget(SectionContent::RefPtr c, QWidget* pa
QFrame(parent),
_content(c)
{
qDebug() << Q_FUNC_INFO;
QBoxLayout* l = new QBoxLayout(QBoxLayout::TopToBottom);
l->setContentsMargins(0, 0, 0, 0);
l->setSpacing(0);
@@ -20,7 +17,6 @@ SectionContentWidget::SectionContentWidget(SectionContent::RefPtr c, QWidget* pa
SectionContentWidget::~SectionContentWidget()
{
qDebug() << Q_FUNC_INFO;
layout()->removeWidget(_content->contentWidget());
}