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
ff3fe49a
Commit
ff3fe49a
authored
Mar 16, 2009
by
hjk
Browse files
debgugger: remove dead code
parent
6083988b
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggermanager.cpp
View file @
ff3fe49a
...
...
@@ -795,18 +795,6 @@ QVariant DebuggerManager::sessionValue(const QString &name)
return
value
;
}
void
DebuggerManager
::
querySessionValue
(
const
QString
&
name
,
QVariant
*
value
)
{
// this is answered by the plugin
emit
sessionValueRequested
(
name
,
value
);
}
void
DebuggerManager
::
setSessionValue
(
const
QString
&
name
,
const
QVariant
&
value
)
{
// this is answered by the plugin
emit
setSessionValueRequested
(
name
,
value
);
}
QVariant
DebuggerManager
::
configValue
(
const
QString
&
name
)
{
// this is answered by the plugin
...
...
src/plugins/debugger/debuggermanager.h
View file @
ff3fe49a
...
...
@@ -237,8 +237,6 @@ public slots:
void
setBusyCursor
(
bool
on
);
void
queryCurrentTextEditor
(
QString
*
fileName
,
int
*
lineNumber
,
QObject
**
ed
);
void
querySessionValue
(
const
QString
&
name
,
QVariant
*
value
);
void
setSessionValue
(
const
QString
&
name
,
const
QVariant
&
value
);
QVariant
configValue
(
const
QString
&
name
);
void
queryConfigValue
(
const
QString
&
name
,
QVariant
*
value
);
void
setConfigValue
(
const
QString
&
name
,
const
QVariant
&
value
);
...
...
src/plugins/debugger/debuggerplugin.cpp
View file @
ff3fe49a
...
...
@@ -395,10 +395,10 @@ void DebuggerPlugin::shutdown()
m_manager
=
0
;
}
bool
DebuggerPlugin
::
initialize
(
const
QStringList
&
arguments
,
QString
*
error
_m
essage
)
bool
DebuggerPlugin
::
initialize
(
const
QStringList
&
arguments
,
QString
*
error
M
essage
)
{
Q_UNUSED
(
arguments
);
Q_UNUSED
(
error
_m
essage
);
Q_UNUSED
(
error
M
essage
);
m_manager
=
new
DebuggerManager
;
...
...
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