making QskLayoutBox a QskBox

This commit is contained in:
Uwe Rathmann 2019-05-10 07:45:10 +02:00
parent 01d5fedca7
commit f5fa8d6fa3
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ class QskLayoutBox::PrivateData
}; };
QskLayoutBox::QskLayoutBox( QQuickItem* parent ) QskLayoutBox::QskLayoutBox( QQuickItem* parent )
: QskControl( parent ) : QskBox( false, parent )
, m_data( new PrivateData() ) , m_data( new PrivateData() )
{ {
} }

View File

@ -6,12 +6,12 @@
#ifndef QSK_LAYOUT_BOX_H #ifndef QSK_LAYOUT_BOX_H
#define QSK_LAYOUT_BOX_H #define QSK_LAYOUT_BOX_H
#include "QskControl.h" #include "QskBox.h"
class QskLayoutEngine; class QskLayoutEngine;
class QskLayoutItem; class QskLayoutItem;
class QSK_EXPORT QskLayoutBox : public QskControl class QSK_EXPORT QskLayoutBox : public QskBox
{ {
Q_OBJECT Q_OBJECT