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
c7f4dc2d
Commit
c7f4dc2d
authored
Mar 10, 2011
by
Thorbjørn Lindeijer
Browse files
Generic project: Fixed the connection to updateToolChainList
Reviewed-by: Roberto Raggi
parent
82430a6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/genericprojectmanager/genericproject.cpp
View file @
c7f4dc2d
...
...
@@ -465,9 +465,9 @@ GenericBuildSettingsWidget::GenericBuildSettingsWidget(GenericTarget *target)
connect
(
m_toolChainChooser
,
SIGNAL
(
activated
(
int
)),
this
,
SLOT
(
toolChainSelected
(
int
)));
connect
(
m_target
->
genericProject
(),
SIGNAL
(
toolChainChanged
(
ProjectExplorer
::
ToolChain
*
)),
this
,
SLOT
(
toolChainChanged
(
ProjectExplorer
::
ToolChain
*
)));
connect
(
ProjectExplorer
::
ToolChainManager
::
instance
(),
SIGNAL
(
toolChainAdded
(
ToolChain
*
)),
connect
(
ProjectExplorer
::
ToolChainManager
::
instance
(),
SIGNAL
(
toolChainAdded
(
ProjectExplorer
::
ToolChain
*
)),
this
,
SLOT
(
updateToolChainList
()));
connect
(
ProjectExplorer
::
ToolChainManager
::
instance
(),
SIGNAL
(
toolChainRemoved
(
ToolChain
*
)),
connect
(
ProjectExplorer
::
ToolChainManager
::
instance
(),
SIGNAL
(
toolChainRemoved
(
ProjectExplorer
::
ToolChain
*
)),
this
,
SLOT
(
updateToolChainList
()));
}
...
...
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