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
Tobias Hunger
qt-creator
Commits
d652c211
Commit
d652c211
authored
Feb 22, 2011
by
hjk
Browse files
debugger: compile fix
parent
3fcf39a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/commonoptionspage.cpp
View file @
d652c211
...
...
@@ -96,6 +96,12 @@ QIcon CommonOptionsPage::categoryIcon() const
void
CommonOptionsPage
::
apply
()
{
m_group
.
apply
(
ICore
::
instance
()
->
settings
());
if
(
m_ui
.
debuggerChooserWidget
->
isDirty
())
{
//m_abiToDebuggerMap = m_ui.debuggerChooserWidget->debuggerMapping();
m_ui
.
debuggerChooserWidget
->
setDebuggerMapping
(
m_abiToDebuggerMap
);
m_abiToDebuggerMapChanged
=
true
;
}
}
void
CommonOptionsPage
::
finish
()
...
...
@@ -196,7 +202,7 @@ QWidget *CommonOptionsPage::createPage(QWidget *parent)
foreach
(
const
QString
&
key
,
toRemove
)
m_abiToDebuggerMap
.
remove
(
key
);
//
m_ui
->gdb
ChooserWidget->set
Gdb
Mapping(m_abiToDebuggerMap);
m_ui
.
debugger
ChooserWidget
->
set
Debugger
Mapping
(
m_abiToDebuggerMap
);
return
w
;
}
...
...
@@ -416,16 +422,6 @@ QIcon DebuggingHelperOptionPage::categoryIcon() const
void
DebuggingHelperOptionPage
::
apply
()
{
m_group
.
apply
(
ICore
::
instance
()
->
settings
());
/*
if (!m_ui) // page never shown
return;
if (m_ui->gdbChooserWidget->isDirty()) {
//m_abiToDebuggerMap = m_ui->gdbChooserWidget->gdbMapping();
m_ui->gdbChooserWidget->setGdbMapping(m_abiToDebuggerMap);
gdbMappingChanged = true;
}
*/
}
void
DebuggingHelperOptionPage
::
finish
()
...
...
src/plugins/debugger/gdb/gdboptionspage.ui
View file @
d652c211
...
...
@@ -204,12 +204,6 @@ on slow machines. In this case, the value should be increased.</string>
<header
location=
"global"
>
utils/pathchooser.h
</header>
<container>
1
</container>
</customwidget>
<customwidget>
<class>
Debugger::Internal::GdbChooserWidget
</class>
<extends>
QWidget
</extends>
<header>
gdb/gdbchooserwidget.h
</header>
<container>
1
</container>
</customwidget>
</customwidgets>
<resources/>
<connections/>
...
...
Write
Preview
Markdown
is supported
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