forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/3.1'
Conflicts: qbs/imports/QtcTool.qbs src/plugins/git/giteditor.cpp src/plugins/qmldesigner/qmldesignerplugin.cpp Change-Id: Icafd32f713effb1479480a0d1f61a01e429fbec0
This commit is contained in:
@@ -65,7 +65,7 @@ CMakeBuildConfiguration::CMakeBuildConfiguration(ProjectExplorer::Target *parent
|
||||
CMakeBuildConfiguration *source) :
|
||||
BuildConfiguration(parent, source),
|
||||
m_msvcVersion(source->m_msvcVersion),
|
||||
m_useNinja(false)
|
||||
m_useNinja(source->m_useNinja)
|
||||
{
|
||||
Q_ASSERT(parent);
|
||||
cloneSteps(source);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import qbs.base 1.0
|
||||
import qbs 1.0
|
||||
|
||||
import QtcPlugin
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ CMakeProjectNode::CMakeProjectNode(const QString &fileName)
|
||||
{
|
||||
}
|
||||
|
||||
bool CMakeProjectNode::hasBuildTargets() const
|
||||
bool CMakeProjectNode::showInSimpleTree() const
|
||||
{
|
||||
// TODO
|
||||
return true;
|
||||
|
||||
@@ -41,7 +41,7 @@ class CMakeProjectNode : public ProjectExplorer::ProjectNode
|
||||
friend class CMakeProject;
|
||||
public:
|
||||
CMakeProjectNode(const QString &fileName);
|
||||
virtual bool hasBuildTargets() const;
|
||||
virtual bool showInSimpleTree() const;
|
||||
virtual QList<ProjectExplorer::ProjectAction> supportedActions(Node *node) const;
|
||||
|
||||
virtual bool canAddSubProject(const QString &proFilePath) const;
|
||||
|
||||
@@ -260,7 +260,7 @@ CMakeRunConfigurationWidget::CMakeRunConfigurationWidget(CMakeRunConfiguration *
|
||||
m_workingDirectoryEdit->setPromptDialogTitle(tr("Select Working Directory"));
|
||||
|
||||
QToolButton *resetButton = new QToolButton();
|
||||
resetButton->setToolTip(tr("Reset to default"));
|
||||
resetButton->setToolTip(tr("Reset to default."));
|
||||
resetButton->setIcon(QIcon(QLatin1String(Core::Constants::ICON_RESET)));
|
||||
|
||||
QHBoxLayout *boxlayout = new QHBoxLayout();
|
||||
|
||||
Reference in New Issue
Block a user