diff --git a/src/private/Frame.cpp b/src/private/Frame.cpp index 2da2e64d..d4faf2de 100644 --- a/src/private/Frame.cpp +++ b/src/private/Frame.cpp @@ -396,15 +396,6 @@ int Frame::dbg_numFrames() return s_dbg_numFrames; } -void Frame::dumpDebug() -{ - qDebug() << " Frame:" << (void*)this; - qDebug() << " layoutItem=" << m_layoutItem << "; num=" << m_tabWidget->numDockWidgets(); - for (auto dw : dockWidgets()) { - qDebug() << " dockwidget=" << dw << "; dw->lastPositions=" << dw->lastPositions(); - } -} - bool Frame::beingDeletedLater() const { return m_beingDeleted; diff --git a/src/private/Frame_p.h b/src/private/Frame_p.h index 57d99995..fc799167 100644 --- a/src/private/Frame_p.h +++ b/src/private/Frame_p.h @@ -185,9 +185,6 @@ public: ///@brief For tests-only. Returns the number of Frame instances in the whole application. static int dbg_numFrames(); - ///@brief for debug only, prints some debug information - void dumpDebug(); - /** * @brief Returns whether a deleteLater has already been issued */