Skip to content
GitLab
Menu
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
658f4393
Commit
658f4393
authored
Oct 28, 2009
by
Oswald Buddenhagen
Browse files
missed some functions while marking iface impls with virtual
parent
56053abb
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.h
View file @
658f4393
...
...
@@ -321,7 +321,7 @@ private: ////////// View & Data Stuff //////////
virtual
void
loadSymbols
(
const
QString
&
moduleName
);
virtual
void
loadAllSymbols
();
virtual
QList
<
Symbol
>
moduleSymbols
(
const
QString
&
moduleName
);
void
reloadModules
();
virtual
void
reloadModules
();
void
handleModulesList
(
const
GdbResponse
&
response
);
bool
m_modulesListOutdated
;
...
...
@@ -329,8 +329,8 @@ private: ////////// View & Data Stuff //////////
//
// Register specific stuff
//
Q_SLOT
void
reloadRegisters
();
void
setRegisterValue
(
int
nr
,
const
QString
&
value
);
Q_SLOT
virtual
void
reloadRegisters
();
virtual
void
setRegisterValue
(
int
nr
,
const
QString
&
value
);
void
handleRegisterListNames
(
const
GdbResponse
&
response
);
void
handleRegisterListValues
(
const
GdbResponse
&
response
);
...
...
@@ -349,7 +349,7 @@ private: ////////// View & Data Stuff //////////
//
// Source file specific stuff
//
void
reloadSourceFiles
();
virtual
void
reloadSourceFiles
();
void
handleQuerySources
(
const
GdbResponse
&
response
);
QString
fullName
(
const
QString
&
fileName
);
...
...
@@ -375,7 +375,7 @@ private: ////////// View & Data Stuff //////////
void
handleStackListThreads
(
const
GdbResponse
&
response
);
void
handleStackFrame
(
const
GdbResponse
&
response
);
Q_SLOT
void
reloadStack
(
bool
forceGotoLocation
);
Q_SLOT
void
reloadFullStack
();
Q_SLOT
virtual
void
reloadFullStack
();
int
currentFrame
()
const
;
QList
<
GdbMi
>
m_currentFunctionArgs
;
...
...
@@ -399,7 +399,7 @@ private: ////////// View & Data Stuff //////////
void
handleChildren
(
const
WatchData
&
parent
,
const
GdbMi
&
child
,
QList
<
WatchData
>
*
insertions
);
void
updateWatchData
(
const
WatchData
&
data
);
void
virtual
updateWatchData
(
const
WatchData
&
data
);
Q_SLOT
void
updateWatchDataHelper
(
const
WatchData
&
data
);
void
rebuildModel
();
bool
showToolTip
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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