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
Tobias Hunger
qt-creator
Commits
1daebd7c
Commit
1daebd7c
authored
Dec 15, 2010
by
Thomas Hartmann
Browse files
QmlDesigner.navigatorModel: fixes asserts
parent
7fa7ec98
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/components/navigator/navigatortreemodel.cpp
View file @
1daebd7c
...
...
@@ -300,7 +300,7 @@ void NavigatorTreeModel::handleChangedItem(QStandardItem *item)
return
;
uint
nodeHash
=
item
->
data
(
NavigatorRole
).
toUInt
();
Q_ASSERT
(
nodeHash
>=
0
&&
containsNodeHash
(
nodeHash
));
Q_ASSERT
(
containsNodeHash
(
nodeHash
));
ModelNode
node
=
nodeForHash
(
nodeHash
);
ItemRow
itemRow
=
itemRowForNode
(
node
);
...
...
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