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
c0e85146
Commit
c0e85146
authored
Feb 03, 2010
by
Bea Lam
Browse files
Fix all ids that start with uppercase letters as this is no
longer allowed.
parent
f915c682
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/components/stateseditor/stateslist.qml
View file @
c0e85146
...
...
@@ -58,7 +58,7 @@ Rectangle {
spacing
:
4
Repeater
{
model
:
statesEditorModel
delegate
:
D
elegate
delegate
:
d
elegate
}
}
Loader
{
...
...
@@ -81,14 +81,14 @@ Rectangle {
}
Component
{
id
:
D
elegate
id
:
d
elegate
Item
{
id
:
container
width
:
Math
.
max
(
img
.
width
,
txt
.
width
+
removeState
.
width
+
2
,
stateNameEditor
.
width
)
+
4
height
:
img
.
height
+
txt
.
height
+
4
Rectangle
{
id
:
H
ighlight
id
:
h
ighlight
anchors.fill
:
parent
color
:
"
#0303e0
"
radius
:
4
...
...
@@ -152,7 +152,7 @@ Rectangle {
Rectangle
{
width
:
parent
.
width
-
4
;
height
:
2
color
:(
root
.
currentStateIndex
==
index
?
H
ighlight
.
color
:
root
.
color
);
color
:(
root
.
currentStateIndex
==
index
?
h
ighlight
.
color
:
root
.
color
);
anchors.centerIn
:
parent
}
...
...
@@ -237,7 +237,7 @@ Rectangle {
}
MouseRegion
{
id
:
A
bsorbAllClicks
id
:
a
bsorbAllClicks
anchors.fill
:
parent
}
Text
{
...
...
src/plugins/qmlinspector/components/engines.qml
View file @
c0e85146
...
...
@@ -2,7 +2,7 @@ import Qt 4.6
Item
{
height
:
100
id
:
R
oot
id
:
r
oot
signal
engineClicked
(
int
id
)
signal
refreshEngines
()
...
...
@@ -13,18 +13,18 @@ Item {
Item
{
width
:
100
;
height
:
100
;
Image
{
id
:
E
ngineIcon
;
id
:
e
ngineIcon
;
source
:
"
qrc:/engine.png
"
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
Text
{
anchors.top
:
E
ngineIcon
.
bottom
;
anchors.top
:
e
ngineIcon
.
bottom
;
text
:
modelData
.
name
+
"
(
"
+
modelData
.
engineId
+
"
)
"
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
MouseRegion
{
anchors.fill
:
parent
onClicked
:
R
oot
.
engineClicked
(
modelData
.
engineId
);
onClicked
:
r
oot
.
engineClicked
(
modelData
.
engineId
);
}
}
}
...
...
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