summaryrefslogtreecommitdiff
path: root/src/controls/plugin.cpp
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@digia.com>2013-02-28 13:00:16 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-06 16:53:44 +0100
commit9c59d474479d21ba08ac5c2ef49b77557493c3fb (patch)
treecdabeba5d4db8bac26b10438ef0828e7a71b946a /src/controls/plugin.cpp
parent795fa39d8e86f3ae6f053611ebefda0a880b65ae (diff)
downloadqtquickcontrols-9c59d474479d21ba08ac5c2ef49b77557493c3fb.tar.gz
Change the layout engine of RowLayout and ColumnLayout.
It now uses the gridlayoutengine from graphicsview, which also gives us a well tested grid layout engine almost for free. Change-Id: I939ae4d2b321c8079935ff3374e8e5d10d02384b Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/controls/plugin.cpp')
-rw-r--r--src/controls/plugin.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/controls/plugin.cpp b/src/controls/plugin.cpp
index b81347c0..20d2f394 100644
--- a/src/controls/plugin.cpp
+++ b/src/controls/plugin.cpp
@@ -44,7 +44,6 @@
#include "qtexclusivegroup_p.h"
#include "qtmenu_p.h"
#include "qtmenubar_p.h"
-#include "qquicklinearlayout_p.h"
#include "qpagestatus.h"
#include <qimage.h>
@@ -87,11 +86,6 @@ void StylePlugin::registerTypes(const char *uri)
qmlRegisterUncreatableType<QtMenuBase>(uri, 1, 0, "MenuBase",
QLatin1String("Do not create objects of type MenuBase"));
- qmlRegisterType<QQuickComponentsRowLayout>(uri, 1, 0, "RowLayout");
- qmlRegisterType<QQuickComponentsColumnLayout>(uri, 1, 0, "ColumnLayout");
- qmlRegisterUncreatableType<QQuickComponentsLayout>(uri, 1, 0, "Layout",
- QLatin1String("Do not create objects of type Layout"));
-
qmlRegisterUncreatableType<QPageStatus>(uri, 1, 0, "PageStatus", QLatin1String("Do not create objects of type PageStatus"));
}