summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/propertyeditor/basiclayouts.cpp
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@nokia.com>2010-02-04 12:56:21 +0100
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2010-02-04 13:08:04 +0100
commit90d6b6c90528ec24c699c6faafef1a1ae6be03be (patch)
treeb2bd6239e28d593354fdffceae4b85db3d76fc46 /src/plugins/qmldesigner/components/propertyeditor/basiclayouts.cpp
parent851984cab5cfae652bd71f86fb1952a51e909f44 (diff)
downloadqt-creator-90d6b6c90528ec24c699c6faafef1a1ae6be03be.tar.gz
QmlDesigner: cleanup of Qt 4.6 namespace in qml
Diffstat (limited to 'src/plugins/qmldesigner/components/propertyeditor/basiclayouts.cpp')
-rw-r--r--src/plugins/qmldesigner/components/propertyeditor/basiclayouts.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/qmldesigner/components/propertyeditor/basiclayouts.cpp b/src/plugins/qmldesigner/components/propertyeditor/basiclayouts.cpp
index 7c93b6620e..5811ef67bc 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/basiclayouts.cpp
+++ b/src/plugins/qmldesigner/components/propertyeditor/basiclayouts.cpp
@@ -31,7 +31,7 @@
QT_BEGIN_NAMESPACE
-QML_DEFINE_TYPE(Qt,4,6,QBoxLayout,QBoxLayoutObject);
+QML_DEFINE_TYPE(Bauhaus,1,0,QBoxLayout,QBoxLayoutObject);
QBoxLayoutObject::QBoxLayoutObject(QObject *parent)
: QLayoutObject(parent), _widgets(this), _layout(0)
@@ -57,14 +57,14 @@ void QBoxLayoutObject::clearWidget()
{
}
-QML_DEFINE_TYPE(Qt,4,6,QHBoxLayout,QHBoxLayoutObject);
+QML_DEFINE_TYPE(Bauhaus,1,0,QHBoxLayout,QHBoxLayoutObject);
QHBoxLayoutObject::QHBoxLayoutObject(QObject *parent)
: QBoxLayoutObject(new QHBoxLayout, parent)
{
}
-QML_DEFINE_TYPE(Qt,4,6,QVBoxLayout,QVBoxLayoutObject);
+QML_DEFINE_TYPE(Bauhaus,1,0,QVBoxLayout,QVBoxLayoutObject);
QVBoxLayoutObject::QVBoxLayoutObject(QObject *parent)
: QBoxLayoutObject(new QVBoxLayout, parent)
{