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
a84ebd12
Commit
a84ebd12
authored
Dec 08, 2009
by
dt
Browse files
Fix show/hide of importing label
parent
5f05fb75
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp
View file @
a84ebd12
...
...
@@ -153,6 +153,8 @@ void Qt4ProjectConfigWidget::init(ProjectExplorer::BuildConfiguration *bc)
this
,
SLOT
(
buildDirectoryChanged
()));
disconnect
(
m_buildConfiguration
,
SIGNAL
(
qtVersionChanged
()),
this
,
SLOT
(
qtVersionChanged
()));
disconnect
(
m_buildConfiguration
,
SIGNAL
(
qmakeBuildConfigurationChanged
()),
this
,
SLOT
(
updateImportLabel
()));
}
m_buildConfiguration
=
static_cast
<
Qt4BuildConfiguration
*>
(
bc
);
...
...
@@ -161,6 +163,8 @@ void Qt4ProjectConfigWidget::init(ProjectExplorer::BuildConfiguration *bc)
this
,
SLOT
(
buildDirectoryChanged
()));
connect
(
m_buildConfiguration
,
SIGNAL
(
qtVersionChanged
()),
this
,
SLOT
(
qtVersionChanged
()));
connect
(
m_buildConfiguration
,
SIGNAL
(
qmakeBuildConfigurationChanged
()),
this
,
SLOT
(
updateImportLabel
()));
m_ui
->
nameLineEdit
->
setText
(
m_buildConfiguration
->
displayName
());
...
...
src/plugins/qt4projectmanager/qt4projectconfigwidget.h
View file @
a84ebd12
...
...
@@ -70,10 +70,10 @@ private slots:
void
qtVersionsChanged
();
void
qtVersionChanged
();
void
buildDirectoryChanged
();
void
updateImportLabel
();
private:
void
updateDetails
();
void
updateToolChainCombo
();
void
updateImportLabel
();
Ui
::
Qt4ProjectConfigWidget
*
m_ui
;
QAbstractButton
*
m_browseButton
;
Qt4BuildConfiguration
*
m_buildConfiguration
;
...
...
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