Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
fd1af2e6
Commit
fd1af2e6
authored
May 13, 2011
by
Kai Koehne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DebuggingHelper: Rename 'qtVersionsChanged' to 'dumpUpdatedFor'
Suggested by dt
parent
b470bdc6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
src/plugins/qt4projectmanager/qmakestep.cpp
src/plugins/qt4projectmanager/qmakestep.cpp
+3
-3
src/plugins/qt4projectmanager/qmakestep.h
src/plugins/qt4projectmanager/qmakestep.h
+1
-1
src/plugins/qt4projectmanager/qtoptionspage.cpp
src/plugins/qt4projectmanager/qtoptionspage.cpp
+3
-3
src/plugins/qt4projectmanager/qtoptionspage.h
src/plugins/qt4projectmanager/qtoptionspage.h
+1
-1
src/plugins/qt4projectmanager/qtversionmanager.cpp
src/plugins/qt4projectmanager/qtversionmanager.cpp
+1
-1
src/plugins/qt4projectmanager/qtversionmanager.h
src/plugins/qt4projectmanager/qtversionmanager.h
+2
-2
No files found.
src/plugins/qt4projectmanager/qmakestep.cpp
View file @
fd1af2e6
...
...
@@ -463,8 +463,8 @@ QMakeStepConfigWidget::QMakeStepConfigWidget(QMakeStep *step)
this
,
SLOT
(
qtVersionChanged
()));
connect
(
step
->
qt4BuildConfiguration
(),
SIGNAL
(
qmakeBuildConfigurationChanged
()),
this
,
SLOT
(
qmakeBuildConfigChanged
()));
connect
(
QtVersionManager
::
instance
(),
SIGNAL
(
qtVersions
Updated
(
QString
)),
this
,
SLOT
(
qtVersionsUpdated
(
QString
)));
connect
(
QtVersionManager
::
instance
(),
SIGNAL
(
dump
Updated
For
(
QString
)),
this
,
SLOT
(
qtVersions
Dump
Updated
(
QString
)));
}
void
QMakeStepConfigWidget
::
init
()
...
...
@@ -496,7 +496,7 @@ void QMakeStepConfigWidget::qtVersionChanged()
updateQmlDebuggingOption
();
}
void
QMakeStepConfigWidget
::
qtVersionsUpdated
(
const
QString
&
qmakeCommand
)
void
QMakeStepConfigWidget
::
qtVersions
Dump
Updated
(
const
QString
&
qmakeCommand
)
{
if
(
BaseQtVersion
*
version
=
m_step
->
qt4BuildConfiguration
()
->
qtVersion
())
{
if
(
version
->
qmakeCommand
()
==
qmakeCommand
)
...
...
src/plugins/qt4projectmanager/qmakestep.h
View file @
fd1af2e6
...
...
@@ -137,7 +137,7 @@ public:
private
slots
:
// slots for handling buildconfiguration/step signals
void
qtVersionChanged
();
void
qtVersionsUpdated
(
const
QString
&
qmakeCommand
);
void
qtVersions
Dump
Updated
(
const
QString
&
qmakeCommand
);
void
qmakeBuildConfigChanged
();
void
userArgumentsChanged
();
void
linkQmlDebuggingLibraryChanged
();
...
...
src/plugins/qt4projectmanager/qtoptionspage.cpp
View file @
fd1af2e6
...
...
@@ -198,8 +198,8 @@ QtOptionsPageWidget::QtOptionsPageWidget(QWidget *parent, QList<BaseQtVersion *>
userChangedCurrentVersion
();
updateCleanUpButton
();
connect
(
QtVersionManager
::
instance
(),
SIGNAL
(
qtVersions
Updated
(
QString
)),
this
,
SLOT
(
qtVersionsUpdated
(
QString
)));
connect
(
QtVersionManager
::
instance
(),
SIGNAL
(
dump
Updated
For
(
QString
)),
this
,
SLOT
(
qtVersions
Dump
Updated
(
QString
)));
}
bool
QtOptionsPageWidget
::
eventFilter
(
QObject
*
o
,
QEvent
*
e
)
...
...
@@ -313,7 +313,7 @@ void QtOptionsPageWidget::cleanUpQtVersions()
updateCleanUpButton
();
}
void
QtOptionsPageWidget
::
qtVersionsUpdated
(
const
QString
&
qmakeCommand
)
void
QtOptionsPageWidget
::
qtVersions
Dump
Updated
(
const
QString
&
qmakeCommand
)
{
foreach
(
BaseQtVersion
*
version
,
m_versions
)
{
if
(
version
->
qmakeCommand
()
==
qmakeCommand
)
...
...
src/plugins/qt4projectmanager/qtoptionspage.h
View file @
fd1af2e6
...
...
@@ -108,7 +108,7 @@ private slots:
void
debuggingHelperBuildFinished
(
int
qtVersionId
,
const
QString
&
output
,
DebuggingHelperBuildTask
::
Tools
tools
);
void
cleanUpQtVersions
();
void
qtVersionsUpdated
(
const
QString
&
qmakeCommand
);
void
qtVersions
Dump
Updated
(
const
QString
&
qmakeCommand
);
};
class
QtOptionsPage
:
public
Core
::
IOptionsPage
...
...
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
fd1af2e6
...
...
@@ -381,7 +381,7 @@ void QtVersionManager::updateQtVersion(int id)
if
(
v
->
qmakeCommand
()
==
qmakeCommand
)
v
->
recheckDumper
();
}
emit
qtVersions
Updated
(
qmakeCommand
);
emit
dump
Updated
For
(
qmakeCommand
);
}
void
QtVersionManager
::
updateSettings
()
...
...
src/plugins/qt4projectmanager/qtversionmanager.h
View file @
fd1af2e6
...
...
@@ -118,8 +118,8 @@ public:
QString
popPendingMwcUpdate
();
QString
popPendingGcceUpdate
();
signals:
//
qt version information cache has been invalidat
ed
void
qtVersions
Updated
(
const
QString
&
qmakeCommand
);
//
content of BaseQtVersion objects with qmake path might have chang
ed
void
dump
Updated
For
(
const
QString
&
qmakeCommand
);
void
qtVersionsChanged
(
const
QList
<
int
>
&
uniqueIds
);
void
updateExamples
(
QString
,
QString
,
QString
);
...
...
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