mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-01-26 14:29:02 +08:00
Removed debug output
This commit is contained in:
parent
409d4489cc
commit
5e59a6dc3a
@ -277,7 +277,6 @@ void CAutoHideDockContainer::updateSize()
|
||||
//============================================================================
|
||||
CAutoHideDockContainer::~CAutoHideDockContainer()
|
||||
{
|
||||
qDebug() << "~CAutoHideDockContainer()"
|
||||
ADS_PRINT("~CAutoHideDockContainer");
|
||||
|
||||
// Remove event filter in case there are any queued messages
|
||||
|
@ -193,8 +193,6 @@ CAutoHideSideBar::CAutoHideSideBar(CDockContainerWidget* parent, SideBarLocation
|
||||
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
|
||||
}
|
||||
|
||||
qDebug() << "d->TabsLayout->count " << d->TabsLayout->count();
|
||||
|
||||
hide();
|
||||
}
|
||||
|
||||
@ -202,7 +200,7 @@ CAutoHideSideBar::CAutoHideSideBar(CDockContainerWidget* parent, SideBarLocation
|
||||
//============================================================================
|
||||
CAutoHideSideBar::~CAutoHideSideBar()
|
||||
{
|
||||
qDebug() << "~CSideTabBar() ";
|
||||
ADS_PRINT("~CSideTabBar()");
|
||||
// The SideTabeBar is not the owner of the tabs and to prevent deletion
|
||||
// we set the parent here to nullptr to remove it from the children
|
||||
auto Tabs = findChildren<CAutoHideTab*>(QString(), Qt::FindDirectChildrenOnly);
|
||||
|
@ -147,7 +147,7 @@ CAutoHideTab::CAutoHideTab(QWidget* parent) :
|
||||
//============================================================================
|
||||
CAutoHideTab::~CAutoHideTab()
|
||||
{
|
||||
qDebug() << "~CDockWidgetSideTab()";
|
||||
ADS_PRINT("~CDockWidgetSideTab()");
|
||||
delete d;
|
||||
}
|
||||
|
||||
|
@ -513,7 +513,6 @@ void CDockAreaTitleBar::onAutoHideButtonClicked()
|
||||
}
|
||||
else
|
||||
{
|
||||
qDebug() << "d->DockArea->currentDockWidget()->toggleAutoHide()";
|
||||
d->DockArea->currentDockWidget()->toggleAutoHide();
|
||||
}
|
||||
}
|
||||
@ -529,7 +528,6 @@ void CDockAreaTitleBar::onAutoHideDockAreaActionClicked()
|
||||
//============================================================================
|
||||
void CDockAreaTitleBar::onAutoHideToActionClicked()
|
||||
{
|
||||
qDebug() << "CDockAreaTitleBar::onAutoHideToActionClicked()";
|
||||
int Location = sender()->property(LocationProperty).toInt();
|
||||
d->DockArea->toggleAutoHide((SideBarLocation)Location);
|
||||
}
|
||||
|
@ -984,7 +984,6 @@ bool CDockAreaWidget::restoreState(CDockingStateReader& s, CDockAreaWidget*& Cre
|
||||
// We hide the DockArea here to prevent the short display (the flashing)
|
||||
// of the dock areas during application startup
|
||||
DockArea->hide();
|
||||
qDebug() << "DockArea->addDockWidget " << DockWidget->windowTitle();
|
||||
DockArea->addDockWidget(DockWidget);
|
||||
DockWidget->setToggleViewActionChecked(!Closed);
|
||||
DockWidget->setClosedState(Closed);
|
||||
|
@ -721,7 +721,6 @@ CFloatingDockContainer::CFloatingDockContainer(CDockWidget *DockWidget) :
|
||||
//============================================================================
|
||||
CFloatingDockContainer::~CFloatingDockContainer()
|
||||
{
|
||||
qDebug() << "~CFloatingDockContainer " << windowTitle();
|
||||
ADS_PRINT("~CFloatingDockContainer");
|
||||
if (d->DockManager)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user