2024-01-17 14:31:45 +01:00

20 lines
517 B
C++

/******************************************************************************
* QSkinny - Copyright (C) The authors
* SPDX-License-Identifier: BSD-3-Clause
*****************************************************************************/
#include "Page.h"
Page::Page( QQuickItem* parent )
: Page( Qt::Vertical, parent )
{
}
Page::Page( Qt::Orientation orientation, QQuickItem* parent )
: QskLinearBox( orientation, parent )
{
setMargins( 20 );
setPadding( 10 );
setSpacing( 10 );
}