Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
b58297fe
Commit
b58297fe
authored
Feb 16, 2010
by
Tobias Hunger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the ProjectConfiguration's displayNameChanged signal
Reviewed-by: dt
parent
129f0a8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
src/plugins/qt4projectmanager/qt4runconfiguration.cpp
src/plugins/qt4projectmanager/qt4runconfiguration.cpp
+4
-4
src/plugins/qt4projectmanager/qt4runconfiguration.h
src/plugins/qt4projectmanager/qt4runconfiguration.h
+1
-2
No files found.
src/plugins/qt4projectmanager/qt4runconfiguration.cpp
View file @
b58297fe
...
...
@@ -287,8 +287,8 @@ Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4Run
connect
(
qt4RunConfiguration
,
SIGNAL
(
commandLineArgumentsChanged
(
QString
)),
this
,
SLOT
(
commandLineArgumentsChanged
(
QString
)));
connect
(
qt4RunConfiguration
,
SIGNAL
(
displayNameChanged
(
QString
)),
this
,
SLOT
(
displayNameChanged
(
QString
)));
connect
(
qt4RunConfiguration
,
SIGNAL
(
displayNameChanged
()),
this
,
SLOT
(
displayNameChanged
()));
connect
(
qt4RunConfiguration
,
SIGNAL
(
runModeChanged
(
ProjectExplorer
::
LocalApplicationRunConfiguration
::
RunMode
)),
this
,
SLOT
(
runModeChanged
(
ProjectExplorer
::
LocalApplicationRunConfiguration
::
RunMode
)));
connect
(
qt4RunConfiguration
,
SIGNAL
(
usingDyldImageSuffixChanged
(
bool
)),
...
...
@@ -395,10 +395,10 @@ void Qt4RunConfigurationWidget::commandLineArgumentsChanged(const QString &args)
m_argumentsLineEdit
->
setText
(
args
);
}
void
Qt4RunConfigurationWidget
::
displayNameChanged
(
const
QString
&
name
)
void
Qt4RunConfigurationWidget
::
displayNameChanged
()
{
if
(
!
m_ignoreChange
)
m_nameLineEdit
->
setText
(
name
);
m_nameLineEdit
->
setText
(
m_qt4RunConfiguration
->
displayName
()
);
}
void
Qt4RunConfigurationWidget
::
runModeChanged
(
LocalApplicationRunConfiguration
::
RunMode
runMode
)
...
...
src/plugins/qt4projectmanager/qt4runconfiguration.h
View file @
b58297fe
...
...
@@ -99,7 +99,6 @@ public slots:
void
invalidateCachedTargetInformation
();
signals:
void
displayNameChanged
(
const
QString
&
);
void
commandLineArgumentsChanged
(
const
QString
&
);
void
workingDirectoryChanged
(
const
QString
&
);
void
runModeChanged
(
ProjectExplorer
::
LocalApplicationRunConfiguration
::
RunMode
runMode
);
...
...
@@ -171,7 +170,7 @@ private slots:
void
workingDirectoryChanged
(
const
QString
&
workingDirectory
);
void
commandLineArgumentsChanged
(
const
QString
&
args
);
void
displayNameChanged
(
const
QString
&
name
);
void
displayNameChanged
();
void
runModeChanged
(
ProjectExplorer
::
LocalApplicationRunConfiguration
::
RunMode
runMode
);
void
userEnvironmentChangesChanged
(
const
QList
<
ProjectExplorer
::
EnvironmentItem
>
&
userChanges
);
void
baseEnvironmentChanged
();
...
...
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