diff options
author | J-P Nurmi <jpnurmi@digia.com> | 2013-02-22 17:25:25 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-03-20 13:04:00 +0100 |
commit | c0df0b6fc002acd22f40284f8ca5377ae96fa1ce (patch) | |
tree | 65809c103291c104d49fa1ca99375eaf1ccfccff /src/controls/plugin.cpp | |
parent | beeb0840b745a29895ee4e9aeac0b07f63998c69 (diff) | |
download | qtquickcontrols-c0df0b6fc002acd22f40284f8ca5377ae96fa1ce.tar.gz |
Remove the Page control - use attached properties instead
Change-Id: I69599daeea4ba49689fbbbe58c5d4a60fccc8824
Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/controls/plugin.cpp')
-rw-r--r-- | src/controls/plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/plugin.cpp b/src/controls/plugin.cpp index 20d2f394..b7dd36cd 100644 --- a/src/controls/plugin.cpp +++ b/src/controls/plugin.cpp @@ -44,7 +44,7 @@ #include "qtexclusivegroup_p.h" #include "qtmenu_p.h" #include "qtmenubar_p.h" -#include "qpagestatus.h" +#include "qtstack_p.h" #include <qimage.h> #include <qqml.h> @@ -86,7 +86,7 @@ void StylePlugin::registerTypes(const char *uri) qmlRegisterUncreatableType<QtMenuBase>(uri, 1, 0, "MenuBase", QLatin1String("Do not create objects of type MenuBase")); - qmlRegisterUncreatableType<QPageStatus>(uri, 1, 0, "PageStatus", QLatin1String("Do not create objects of type PageStatus")); + qmlRegisterUncreatableType<QtStack>(uri, 1, 0, "Stack", QLatin1String("Do not create objects of type Stack")); } void StylePlugin::initializeEngine(QQmlEngine *engine, const char *uri) |