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
211e0d84
Commit
211e0d84
authored
Nov 12, 2010
by
dt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ProjectExplorer: runProjectImpl -> runProject and make it public
parent
74d641a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
src/plugins/projectexplorer/projectexplorer.cpp
src/plugins/projectexplorer/projectexplorer.cpp
+4
-4
src/plugins/projectexplorer/projectexplorer.h
src/plugins/projectexplorer/projectexplorer.h
+2
-1
No files found.
src/plugins/projectexplorer/projectexplorer.cpp
View file @
211e0d84
...
...
@@ -1680,12 +1680,12 @@ void ProjectExplorerPlugin::cleanSession()
void
ProjectExplorerPlugin
::
runProject
()
{
runProject
Impl
(
startupProject
(),
ProjectExplorer
::
Constants
::
RUNMODE
);
runProject
(
startupProject
(),
ProjectExplorer
::
Constants
::
RUNMODE
);
}
void
ProjectExplorerPlugin
::
runProjectContextMenu
()
{
runProject
Impl
(
d
->
m_currentProject
,
ProjectExplorer
::
Constants
::
RUNMODE
);
runProject
(
d
->
m_currentProject
,
ProjectExplorer
::
Constants
::
RUNMODE
);
}
bool
ProjectExplorerPlugin
::
hasBuildSettings
(
Project
*
pro
)
...
...
@@ -1726,7 +1726,7 @@ bool ProjectExplorerPlugin::hasDeploySettings(Project *pro)
return
false
;
}
void
ProjectExplorerPlugin
::
runProject
Impl
(
Project
*
pro
,
QString
mode
)
void
ProjectExplorerPlugin
::
runProject
(
Project
*
pro
,
QString
mode
)
{
if
(
!
pro
)
return
;
...
...
@@ -1764,7 +1764,7 @@ void ProjectExplorerPlugin::debugProject()
if
(
!
pro
)
return
;
runProject
Impl
(
pro
,
ProjectExplorer
::
Constants
::
DEBUGMODE
);
runProject
(
pro
,
ProjectExplorer
::
Constants
::
DEBUGMODE
);
}
bool
ProjectExplorerPlugin
::
showBuildConfigDialog
()
...
...
src/plugins/projectexplorer/projectexplorer.h
View file @
211e0d84
...
...
@@ -112,6 +112,8 @@ public:
static
QStringList
projectFilePatterns
();
bool
coreAboutToClose
();
void
runProject
(
Project
*
pro
,
QString
mode
);
signals:
void
aboutToShowContextMenu
(
ProjectExplorer
::
Project
*
project
,
ProjectExplorer
::
Node
*
node
);
...
...
@@ -224,7 +226,6 @@ private:
int
queue
(
QList
<
Project
*>
,
QStringList
stepIds
);
void
updateContextMenuActions
();
bool
parseArguments
(
const
QStringList
&
arguments
,
QString
*
error
);
void
runProjectImpl
(
Project
*
pro
,
QString
mode
);
void
executeRunConfiguration
(
RunConfiguration
*
,
const
QString
&
mode
);
bool
hasBuildSettings
(
Project
*
pro
);
bool
hasDeploySettings
(
Project
*
pro
);
...
...
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