Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flatpak-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
Marco Bubke
flatpak-qt-creator
Commits
15573c1a
Commit
15573c1a
authored
14 years ago
by
hjk
Browse files
Options
Downloads
Patches
Plain Diff
debugger: compile fix for threadshandler
parent
98ea2b8b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/plugins/debugger/threadshandler.h
+0
-1
0 additions, 1 deletion
src/plugins/debugger/threadshandler.h
src/plugins/debugger/threadswindow.cpp
+1
-7
1 addition, 7 deletions
src/plugins/debugger/threadswindow.cpp
src/plugins/debugger/threadswindow.h
+0
-1
0 additions, 1 deletion
src/plugins/debugger/threadswindow.h
with
1 addition
and
9 deletions
src/plugins/debugger/threadshandler.h
+
0
−
1
View file @
15573c1a
...
@@ -60,7 +60,6 @@ public:
...
@@ -60,7 +60,6 @@ public:
void
setCurrentThreadId
(
int
id
);
void
setCurrentThreadId
(
int
id
);
int
indexOf
(
quint64
threadId
)
const
;
int
indexOf
(
quint64
threadId
)
const
;
void
selectThread
(
int
index
);
void
setThreads
(
const
Threads
&
threads
);
void
setThreads
(
const
Threads
&
threads
);
void
removeAll
();
void
removeAll
();
Threads
threads
()
const
;
Threads
threads
()
const
;
...
...
This diff is collapsed.
Click to expand it.
src/plugins/debugger/threadswindow.cpp
+
1
−
7
View file @
15573c1a
...
@@ -66,7 +66,7 @@ ThreadsWindow::ThreadsWindow(QWidget *parent)
...
@@ -66,7 +66,7 @@ ThreadsWindow::ThreadsWindow(QWidget *parent)
void
ThreadsWindow
::
rowActivated
(
const
QModelIndex
&
index
)
void
ThreadsWindow
::
rowActivated
(
const
QModelIndex
&
index
)
{
{
selectThread
(
index
.
row
());
DebuggerPlugin
::
instance
()
->
currentEngine
()
->
selectThread
(
index
.
row
());
}
}
void
ThreadsWindow
::
contextMenuEvent
(
QContextMenuEvent
*
ev
)
void
ThreadsWindow
::
contextMenuEvent
(
QContextMenuEvent
*
ev
)
...
@@ -108,11 +108,5 @@ void ThreadsWindow::setAlwaysResizeColumnsToContents(bool on)
...
@@ -108,11 +108,5 @@ void ThreadsWindow::setAlwaysResizeColumnsToContents(bool on)
header
()
->
setResizeMode
(
0
,
mode
);
header
()
->
setResizeMode
(
0
,
mode
);
}
}
void
ThreadsWindow
::
selectThread
(
int
index
)
{
DebuggerPlugin
::
instance
()
->
currentEngine
()
->
threadsHandler
()
->
selectThread
(
index
);
}
}
// namespace Internal
}
// namespace Internal
}
// namespace Debugger
}
// namespace Debugger
This diff is collapsed.
Click to expand it.
src/plugins/debugger/threadswindow.h
+
0
−
1
View file @
15573c1a
...
@@ -45,7 +45,6 @@ public:
...
@@ -45,7 +45,6 @@ public:
public
slots
:
public
slots
:
void
resizeColumnsToContents
();
void
resizeColumnsToContents
();
void
setAlwaysResizeColumnsToContents
(
bool
on
);
void
setAlwaysResizeColumnsToContents
(
bool
on
);
void
selectThread
(
int
index
);
private
slots
:
private
slots
:
void
rowActivated
(
const
QModelIndex
&
index
);
void
rowActivated
(
const
QModelIndex
&
index
);
...
...
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