Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
17f1c8a0
"...qt4projectmanager/qt-desktop/qt4runconfiguration.h" did not exist on "dc5cb2bed12d0997dfdc16e0002cfe5232aed0e8"
Commit
17f1c8a0
authored
16 years ago
by
hjk
Browse files
Options
Downloads
Patches
Plain Diff
Fixes: debugger: watch view: collapsed items did not stay collapsed
parent
4168a5da
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/debugger/watchhandler.cpp
+2
-2
2 additions, 2 deletions
src/plugins/debugger/watchhandler.cpp
with
2 additions
and
2 deletions
src/plugins/debugger/watchhandler.cpp
+
2
−
2
View file @
17f1c8a0
...
...
@@ -790,9 +790,9 @@ void WatchHandler::collapseChildren(const QModelIndex &idx)
return
;
}
QTC_ASSERT
(
checkIndex
(
idx
.
internalId
()),
return
);
#if 0
QString
iname0
=
m_displaySet
.
at
(
idx
.
internalId
()).
iname
;
MODEL_DEBUG
(
"COLLAPSE NODE"
<<
iname0
);
#if 0
QString iname1 = iname0 + '.';
for (int i = m_completeSet.size(); --i >= 0; ) {
QString iname = m_completeSet.at(i).iname;
...
...
@@ -803,10 +803,10 @@ void WatchHandler::collapseChildren(const QModelIndex &idx)
m_expandedINames.remove(iname);
}
}
#endif
m_expandedINames
.
remove
(
iname0
);
//MODEL_DEBUG(toString());
//rebuildModel();
#endif
}
void
WatchHandler
::
expandChildren
(
const
QModelIndex
&
idx
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment