Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
c7f7585b
Commit
c7f7585b
authored
Feb 26, 2010
by
Kai Koehne
Browse files
QmlDesigner: Take some more qml elements out of general Qt namespace
Reviewed-by: Thomas Hartmann
parent
309f6bae
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/components/propertyeditor/basicwidgets.cpp
View file @
c7f7585b
...
...
@@ -1204,7 +1204,7 @@ void BasicWidgets::registerDeclarativeTypes()
//QML_REGISTER_TYPE(Bauhaus,1,0,BauhausreeView,BauhausreeView);
//QML_REGISTER_TYPE(Bauhaus,1,0,BauhausableView,BauhausableView);
QML_REGISTER_TYPE
(
Qt
,
4
,
6
,
QTabObject
,
QTabObject
);
//### with namespacing, this should just be 'Tab'
QML_REGISTER_TYPE
(
Bauhaus
,
1
,
0
,
QTabObject
,
QTabObject
);
//### with namespacing, this should just be 'Tab'
}
#include
"basicwidgets.moc"
src/plugins/qmldesigner/components/propertyeditor/qlayoutobject.cpp
View file @
c7f7585b
...
...
@@ -34,7 +34,7 @@ QT_BEGIN_NAMESPACE
void
QLayoutObject
::
registerDeclarativeType
()
{
QML_REGISTER_TYPE
(
Qt
,
4
,
6
,
QLayoutObject
,
QLayoutObject
);
QML_REGISTER_TYPE
(
Bauhaus
,
1
,
0
,
QLayoutObject
,
QLayoutObject
);
}
QLayoutObject
::
QLayoutObject
(
QObject
*
parent
)
...
...
src/plugins/qmldesigner/components/propertyeditor/qproxylayoutitem.cpp
View file @
c7f7585b
...
...
@@ -160,8 +160,8 @@ QSizeF QProxyLayout::sizeHint(Qt::SizeHint which,
void
QProxyLayoutItem
::
registerDeclarativeTypes
()
{
QML_REGISTER_TYPE
(
Qt
,
4
,
6
,
LayoutItem
,
QProxyLayoutItem
);
QML_REGISTER_TYPE
(
Qt
,
4
,
6
,
ProxyLayout
,
QProxyLayout
);
QML_REGISTER_TYPE
(
Bauhaus
,
1
,
0
,
LayoutItem
,
QProxyLayoutItem
);
QML_REGISTER_TYPE
(
Bauhaus
,
1
,
0
,
ProxyLayout
,
QProxyLayout
);
}
QT_END_NAMESPACE
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment