All: Reformat according to new standard
This commit is contained in:
committed by
Kacper Donat
parent
eafd18dac0
commit
25c3ba7338
@@ -20,9 +20,9 @@
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
# include <QEvent>
|
||||
# include <QGridLayout>
|
||||
# include <QSplitter>
|
||||
#include <QEvent>
|
||||
#include <QGridLayout>
|
||||
#include <QSplitter>
|
||||
|
||||
#include "ComboView.h"
|
||||
#include "PropertyView.h"
|
||||
@@ -35,21 +35,21 @@ using namespace Gui::DockWnd;
|
||||
|
||||
/* TRANSLATOR Gui::DockWnd::ComboView */
|
||||
|
||||
ComboView::ComboView(Gui::Document* pcDocument, QWidget *parent)
|
||||
: DockWindow(pcDocument, parent)
|
||||
ComboView::ComboView(Gui::Document* pcDocument, QWidget* parent)
|
||||
: DockWindow(pcDocument, parent)
|
||||
{
|
||||
auto pLayout = new QGridLayout(this);
|
||||
pLayout->setSpacing( 0 );
|
||||
pLayout->setContentsMargins ( 0, 0, 0, 0 );
|
||||
pLayout->setSpacing(0);
|
||||
pLayout->setContentsMargins(0, 0, 0, 0);
|
||||
|
||||
// tabs to switch between Tree/Properties and TaskPanel
|
||||
auto splitter = new QSplitter();
|
||||
pLayout->addWidget( splitter, 0, 0 );
|
||||
pLayout->addWidget(splitter, 0, 0);
|
||||
|
||||
// splitter between tree and property view
|
||||
splitter->setOrientation(Qt::Vertical);
|
||||
|
||||
tree = new TreePanel("ComboView", this);
|
||||
tree = new TreePanel("ComboView", this);
|
||||
splitter->addWidget(tree);
|
||||
|
||||
// property view
|
||||
|
||||
Reference in New Issue
Block a user