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
Marco Bubke
flatpak-qt-creator
Commits
29e60baf
Commit
29e60baf
authored
Feb 12, 2010
by
Tobias Hunger
Browse files
Update import label when rebuilding
* Update the import label (and related stuff) whenever the project was rebuild.
parent
0d9fb90c
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/buildmanager.h
View file @
29e60baf
...
...
@@ -70,7 +70,6 @@ public:
//shows with focus
void
gotoTaskWindow
();
//TODO these should take buildconfiguration object
void
buildProject
(
BuildConfiguration
*
bc
);
void
buildProjects
(
const
QList
<
BuildConfiguration
*>
&
configurations
);
void
cleanProject
(
BuildConfiguration
*
configuration
);
...
...
src/plugins/projectexplorer/project.h
View file @
29e60baf
...
...
@@ -43,7 +43,6 @@ class IFile;
namespace
ProjectExplorer
{
class
BuildManager
;
class
BuildConfigWidget
;
class
IProjectManager
;
class
EditorConfiguration
;
...
...
src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp
View file @
29e60baf
...
...
@@ -41,6 +41,7 @@
#include
<coreplugin/mainwindow.h>
#include
<projectexplorer/projectexplorerconstants.h>
#include
<projectexplorer/buildconfiguration.h>
#include
<projectexplorer/buildmanager.h>
#include
<utils/qtcassert.h>
#include
<extensionsystem/pluginmanager.h>
...
...
@@ -102,6 +103,9 @@ Qt4ProjectConfigWidget::Qt4ProjectConfigWidget(Qt4Project *project)
connect
(
m_ui
->
manageQtVersionPushButtons
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
manageQtVersions
()));
connect
(
ProjectExplorer
::
ProjectExplorerPlugin
::
instance
()
->
buildManager
(),
SIGNAL
(
buildQueueFinished
(
bool
)),
this
,
SLOT
(
updateImportLabel
()));
QtVersionManager
*
vm
=
QtVersionManager
::
instance
();
connect
(
vm
,
SIGNAL
(
qtVersionsChanged
(
QList
<
int
>
)),
...
...
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