forked from qt-creator/qt-creator
Symbian: Application display name can be changed
When publishing to Ovi Store the application's name can be changed in the Publishing Wizard Task-number: QTCREATORBUG-4816
This commit is contained in:
@@ -103,6 +103,12 @@ void S60PublisherOvi::setBuildConfiguration(Qt4BuildConfiguration *qt4bc)
|
|||||||
m_qt4bc = qt4bc;
|
m_qt4bc = qt4bc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void S60PublisherOvi::setDisplayName(const QString &displayName)
|
||||||
|
{
|
||||||
|
m_displayName = displayName;
|
||||||
|
}
|
||||||
|
|
||||||
void S60PublisherOvi::setVendorName(const QString &vendorName)
|
void S60PublisherOvi::setVendorName(const QString &vendorName)
|
||||||
{
|
{
|
||||||
m_vendorName = vendorName;
|
m_vendorName = vendorName;
|
||||||
@@ -159,7 +165,6 @@ void S60PublisherOvi::completeCreation()
|
|||||||
m_createSisProc->setWorkingDirectory(m_qt4bc->buildDirectory());
|
m_createSisProc->setWorkingDirectory(m_qt4bc->buildDirectory());
|
||||||
|
|
||||||
// set up access to vendor names
|
// set up access to vendor names
|
||||||
|
|
||||||
QStringList deploymentLevelVars = m_reader->values("DEPLOYMENT");
|
QStringList deploymentLevelVars = m_reader->values("DEPLOYMENT");
|
||||||
QStringList vendorInfoVars;
|
QStringList vendorInfoVars;
|
||||||
QStringList valueLevelVars;
|
QStringList valueLevelVars;
|
||||||
@@ -178,6 +183,24 @@ void S60PublisherOvi::completeCreation()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString S60PublisherOvi::nameFromTarget() const
|
||||||
|
{
|
||||||
|
QString target = m_reader->value(QLatin1String("TARGET"));
|
||||||
|
if (target.isEmpty())
|
||||||
|
target = QFileInfo(m_qt4project->rootProjectNode()->path()).baseName();
|
||||||
|
return target;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString S60PublisherOvi::displayName() const
|
||||||
|
{
|
||||||
|
const QStringList displayNameList = m_reader->values(QLatin1String("DEPLOYMENT.display_name"));
|
||||||
|
|
||||||
|
if (displayNameList.isEmpty())
|
||||||
|
return nameFromTarget();
|
||||||
|
|
||||||
|
return displayNameList.join(QLatin1String(" "));
|
||||||
|
}
|
||||||
|
|
||||||
QString S60PublisherOvi::globalVendorName() const
|
QString S60PublisherOvi::globalVendorName() const
|
||||||
{
|
{
|
||||||
QStringList vendorinfos = m_reader->values(m_vendorInfoVariable);
|
QStringList vendorinfos = m_reader->values(m_vendorInfoVariable);
|
||||||
@@ -297,11 +320,14 @@ void S60PublisherOvi::updateProFile(const QString &var, const QString &values)
|
|||||||
void S60PublisherOvi::updateProFile()
|
void S60PublisherOvi::updateProFile()
|
||||||
{
|
{
|
||||||
if (m_vendorInfoVariable.isEmpty()) {
|
if (m_vendorInfoVariable.isEmpty()) {
|
||||||
m_vendorInfoVariable = "vendorinfo";
|
m_vendorInfoVariable = QLatin1String("vendorinfo");
|
||||||
updateProFile("my_deployment.pkg_prerules", m_vendorInfoVariable);
|
updateProFile(QLatin1String("my_deployment.pkg_prerules"), m_vendorInfoVariable);
|
||||||
updateProFile("DEPLOYMENT", "my_deployment");
|
updateProFile(QLatin1String("DEPLOYMENT"), QLatin1String("my_deployment"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!m_displayName.isEmpty() && m_displayName != nameFromTarget())
|
||||||
|
updateProFile(QLatin1String("DEPLOYMENT.display_name"), m_displayName);
|
||||||
|
|
||||||
updateProFile(m_vendorInfoVariable, "\"%{" + m_localVendorNames + "}\" \":\\\"" + m_vendorName + "\\\"\"" );
|
updateProFile(m_vendorInfoVariable, "\"%{" + m_localVendorNames + "}\" \":\\\"" + m_vendorName + "\\\"\"" );
|
||||||
updateProFile("TARGET.UID3", m_appUid);
|
updateProFile("TARGET.UID3", m_appUid);
|
||||||
}
|
}
|
||||||
@@ -366,8 +392,6 @@ void S60PublisherOvi::endBuild(int result)
|
|||||||
|
|
||||||
QString resultFile = m_qt4bc->buildDirectory() + "/" + m_qt4project->displayName() + fileNamePostFix;
|
QString resultFile = m_qt4bc->buildDirectory() + "/" + m_qt4project->displayName() + fileNamePostFix;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
QFileInfo fi(resultFile);
|
QFileInfo fi(resultFile);
|
||||||
if (result == QProcess::NormalExit && fi.exists()) {
|
if (result == QProcess::NormalExit && fi.exists()) {
|
||||||
emit progressReport(tr("Created %1\n").arg(QDir::toNativeSeparators(resultFile)), m_normalColor);
|
emit progressReport(tr("Created %1\n").arg(QDir::toNativeSeparators(resultFile)), m_normalColor);
|
||||||
|
@@ -105,10 +105,12 @@ public:
|
|||||||
void cleanUp();
|
void cleanUp();
|
||||||
void completeCreation();
|
void completeCreation();
|
||||||
|
|
||||||
|
QString displayName() const;
|
||||||
QString globalVendorName() const;
|
QString globalVendorName() const;
|
||||||
QString localisedVendorNames() const;
|
QString localisedVendorNames() const;
|
||||||
bool isVendorNameValid(const QString &vendorName) const;
|
bool isVendorNameValid(const QString &vendorName) const;
|
||||||
|
|
||||||
|
QString nameFromTarget() const;
|
||||||
QString qtVersion() const;
|
QString qtVersion() const;
|
||||||
|
|
||||||
QString uid3() const;
|
QString uid3() const;
|
||||||
@@ -128,10 +130,12 @@ public:
|
|||||||
|
|
||||||
bool hasSucceeded();
|
bool hasSucceeded();
|
||||||
|
|
||||||
|
void setDisplayName(const QString &displayName);
|
||||||
void setVendorName(const QString &vendorName);
|
void setVendorName(const QString &vendorName);
|
||||||
void setLocalVendorNames(const QString &localVendorNames);
|
void setLocalVendorNames(const QString &localVendorNames);
|
||||||
void setAppUid(const QString &appuid);
|
void setAppUid(const QString &appuid);
|
||||||
|
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void progressReport(const QString& status, QColor c);
|
void progressReport(const QString& status, QColor c);
|
||||||
void succeeded();
|
void succeeded();
|
||||||
@@ -165,6 +169,7 @@ private:
|
|||||||
QString m_vendorName;
|
QString m_vendorName;
|
||||||
QString m_localVendorNames;
|
QString m_localVendorNames;
|
||||||
QString m_appUid;
|
QString m_appUid;
|
||||||
|
QString m_displayName;
|
||||||
|
|
||||||
bool m_finishedAndSuccessful;
|
bool m_finishedAndSuccessful;
|
||||||
};
|
};
|
||||||
|
@@ -76,6 +76,11 @@ void S60PublishingSisSettingsPageOvi::initializePage()
|
|||||||
|
|
||||||
showWarningsForUnenforcableChecks();
|
showWarningsForUnenforcableChecks();
|
||||||
|
|
||||||
|
//Check Display Name
|
||||||
|
ui->displayNameLineEdit->setText(m_publisher->displayName());
|
||||||
|
displayNameChanged();
|
||||||
|
connect(ui->displayNameLineEdit,SIGNAL(textChanged(QString)),SLOT(displayNameChanged()));
|
||||||
|
|
||||||
//Check Global Vendor Name
|
//Check Global Vendor Name
|
||||||
ui->globalVendorNameLineEdit->setText(m_publisher->globalVendorName());
|
ui->globalVendorNameLineEdit->setText(m_publisher->globalVendorName());
|
||||||
globalVendorNameChanged();
|
globalVendorNameChanged();
|
||||||
@@ -131,6 +136,29 @@ void S60PublishingSisSettingsPageOvi::reflectSettingState(bool settingState, QLa
|
|||||||
wizard()->setTitleFormat(wizard()->titleFormat());
|
wizard()->setTitleFormat(wizard()->titleFormat());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void S60PublishingSisSettingsPageOvi::displayNameChanged()
|
||||||
|
{
|
||||||
|
reflectSettingState(!ui->displayNameLineEdit->text().isEmpty(),
|
||||||
|
ui->displayNameOkLabel,
|
||||||
|
ui->displayNameErrorLabel,
|
||||||
|
ui->displayNameErrorReasonLabel,
|
||||||
|
tr("This should be application's display name. <br>"
|
||||||
|
"It can't' be empty.<br>"));
|
||||||
|
|
||||||
|
const int visibleCharacters = 12;
|
||||||
|
if (ui->displayNameLineEdit->text().length() > visibleCharacters) {
|
||||||
|
ui->displayNameWarningLabel->show();
|
||||||
|
ui->displayNameWarningReasonLabel->setText(tr("The display name is quite long.<br>"
|
||||||
|
"It might not be fully visible in the phone's menu.<br>"));
|
||||||
|
ui->displayNameWarningReasonLabel->show();
|
||||||
|
} else {
|
||||||
|
ui->displayNameWarningLabel->hide();
|
||||||
|
ui->displayNameWarningReasonLabel->hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
m_publisher->setDisplayName(ui->displayNameLineEdit->text());
|
||||||
|
}
|
||||||
|
|
||||||
void S60PublishingSisSettingsPageOvi::globalVendorNameChanged()
|
void S60PublishingSisSettingsPageOvi::globalVendorNameChanged()
|
||||||
{
|
{
|
||||||
reflectSettingState(m_publisher->isVendorNameValid(ui->globalVendorNameLineEdit->text()),
|
reflectSettingState(m_publisher->isVendorNameValid(ui->globalVendorNameLineEdit->text()),
|
||||||
|
@@ -59,12 +59,14 @@ public:
|
|||||||
virtual void initializePage();
|
virtual void initializePage();
|
||||||
virtual void cleanupPage();
|
virtual void cleanupPage();
|
||||||
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void globalVendorNameChanged();
|
void globalVendorNameChanged();
|
||||||
void localisedVendorNamesChanged();
|
void localisedVendorNamesChanged();
|
||||||
void qtVersionChanged();
|
void qtVersionChanged();
|
||||||
void uid3Changed();
|
void uid3Changed();
|
||||||
void capabilitiesChanged();
|
void capabilitiesChanged();
|
||||||
|
void displayNameChanged();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void reflectSettingState(bool settingState, QLabel *okLabel, QLabel *errorLabel, QLabel *errorReasonLabel, const QString &errorReason);
|
void reflectSettingState(bool settingState, QLabel *okLabel, QLabel *errorLabel, QLabel *errorReasonLabel, const QString &errorReason);
|
||||||
|
@@ -6,8 +6,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>301</width>
|
<width>453</width>
|
||||||
<height>346</height>
|
<height>630</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@@ -23,31 +23,324 @@
|
|||||||
<property name="sizeConstraint">
|
<property name="sizeConstraint">
|
||||||
<enum>QLayout::SetMinAndMaxSize</enum>
|
<enum>QLayout::SetMinAndMaxSize</enum>
|
||||||
</property>
|
</property>
|
||||||
<item row="0" column="0">
|
<item row="10" column="1" colspan="2">
|
||||||
<widget class="QLabel" name="globalVendorNameLabel">
|
<widget class="QLabel" name="localisedVendorNamesErrorReasonLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Global vendor name:</string>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="2">
|
<item row="10" column="0">
|
||||||
<widget class="QLabel" name="globalVendorNameOkLabel">
|
<widget class="QLabel" name="localisedVendorNamesErrorLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
<property name="pixmap">
|
<property name="pixmap">
|
||||||
<pixmap>:/projectexplorer/images/ConnectionOn.png</pixmap>
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_error.png</pixmap>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="8" column="0">
|
<item row="9" column="2">
|
||||||
<widget class="QLabel" name="qtVersionLabel">
|
<widget class="QLabel" name="localisedVendorNamesOkLabel">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Qt version used in builds:</string>
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/ConnectionOn.png</pixmap>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="8" column="1">
|
<item row="9" column="1">
|
||||||
|
<widget class="QLineEdit" name="localisedVendorNamesLineEdit">
|
||||||
|
<property name="text">
|
||||||
|
<string>Localised Vendor Names</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="1">
|
||||||
|
<widget class="QLineEdit" name="globalVendorNameLineEdit">
|
||||||
|
<property name="text">
|
||||||
|
<string>Current Global Vendor Name</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="24" column="1" colspan="3">
|
||||||
|
<widget class="QLabel" name="capabilitiesErrorReasonLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="0" colspan="4">
|
||||||
|
<widget class="Line" name="line_5">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QLabel" name="displayNameErrorLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_error.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<widget class="QLabel" name="displayNameLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string>Display name:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="19" column="1">
|
||||||
|
<widget class="QLabel" name="uid3WarningReasonLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="19" column="0">
|
||||||
|
<widget class="QLabel" name="uid3WarningLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_warning.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="20" column="0" colspan="4">
|
||||||
|
<widget class="Line" name="line">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="7" column="1" colspan="2">
|
||||||
|
<widget class="QLabel" name="globalVendorNameWarningReasonLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="7" column="0">
|
||||||
|
<widget class="QLabel" name="globalVendorNameWarningLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_warning.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="15" column="1" colspan="2">
|
||||||
|
<widget class="QLabel" name="qtVersionWarningReasonLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="15" column="0">
|
||||||
|
<widget class="QLabel" name="qtVersionWarningLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_warning.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="11" column="0">
|
||||||
|
<widget class="QLabel" name="localisedVendorNamesWarningLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_warning.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="11" column="1" colspan="2">
|
||||||
|
<widget class="QLabel" name="localisedVendorNamesWarningReasonLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="12" column="0" colspan="4">
|
||||||
|
<widget class="Line" name="line_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="24" column="0">
|
||||||
|
<widget class="QLabel" name="capabilitiesErrorLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_error.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="18" column="0">
|
||||||
|
<widget class="QLabel" name="uid3ErrorLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_error.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="14" column="0">
|
||||||
|
<widget class="QLabel" name="qtVersionErrorLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_error.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="9" column="0">
|
||||||
|
<widget class="QLabel" name="localisedVendorNamesLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string>Localised vendor names:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="23" column="0">
|
||||||
|
<widget class="QLabel" name="capabilitiesLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string>Capabilities:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="6" column="1" colspan="3">
|
||||||
|
<widget class="QLabel" name="globalVendorNameErrorReasonLabel">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="17" column="2">
|
||||||
|
<widget class="QLabel" name="uid3OkLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/ConnectionOn.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="17" column="1">
|
||||||
|
<widget class="QLineEdit" name="uid3LineEdit">
|
||||||
|
<property name="text">
|
||||||
|
<string>Current UID3</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="17" column="0">
|
||||||
|
<widget class="QLabel" name="uid3Label">
|
||||||
|
<property name="text">
|
||||||
|
<string>Application UID:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="13" column="2">
|
||||||
|
<widget class="QLabel" name="qtVersionOkLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/ConnectionOn.png</pixmap>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="13" column="1">
|
||||||
<widget class="QLabel" name="qtVersionDisplayLabel">
|
<widget class="QLabel" name="qtVersionDisplayLabel">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
@@ -63,48 +356,14 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="8" column="2">
|
<item row="13" column="0">
|
||||||
<widget class="QLabel" name="qtVersionOkLabel">
|
<widget class="QLabel" name="qtVersionLabel">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string>Qt version used in builds:</string>
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/ConnectionOn.png</pixmap>
|
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="12" column="0">
|
<item row="23" column="1">
|
||||||
<widget class="QLabel" name="uid3Label">
|
|
||||||
<property name="text">
|
|
||||||
<string>Application UID:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="12" column="2">
|
|
||||||
<widget class="QLabel" name="uid3OkLabel">
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/ConnectionOn.png</pixmap>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="12" column="1">
|
|
||||||
<widget class="QLineEdit" name="uid3LineEdit">
|
|
||||||
<property name="text">
|
|
||||||
<string>Current UID3</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="18" column="0">
|
|
||||||
<widget class="QLabel" name="capabilitiesLabel">
|
|
||||||
<property name="text">
|
|
||||||
<string>Capabilities:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="18" column="1">
|
|
||||||
<widget class="QLabel" name="capabilitiesDisplayLabel">
|
<widget class="QLabel" name="capabilitiesDisplayLabel">
|
||||||
<property name="frameShape">
|
<property name="frameShape">
|
||||||
<enum>QFrame::NoFrame</enum>
|
<enum>QFrame::NoFrame</enum>
|
||||||
@@ -114,18 +373,39 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="18" column="2">
|
<item row="5" column="0">
|
||||||
<widget class="QLabel" name="capabilitiesOkLabel">
|
<widget class="QLabel" name="globalVendorNameLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string>Global vendor name:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="2">
|
||||||
|
<widget class="QLabel" name="globalVendorNameOkLabel">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
<property name="pixmap">
|
<property name="pixmap">
|
||||||
<pixmap>:/projectexplorer/images/ConnectionOn.png</pixmap>
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/ConnectionOn.png</pixmap>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="1" colspan="3">
|
<item row="16" column="0" colspan="4">
|
||||||
<widget class="QLabel" name="globalVendorNameErrorReasonLabel">
|
<widget class="Line" name="line_3">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="8" column="0" colspan="4">
|
||||||
|
<widget class="Line" name="line_4">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="6" column="0">
|
||||||
|
<widget class="QLabel" name="globalVendorNameErrorLabel">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
<horstretch>0</horstretch>
|
<horstretch>0</horstretch>
|
||||||
@@ -135,22 +415,12 @@
|
|||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
<property name="pixmap">
|
||||||
</item>
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_error.png</pixmap>
|
||||||
<item row="9" column="1" colspan="3">
|
|
||||||
<widget class="QLabel" name="qtVersionErrorReasonLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="13" column="1" colspan="3">
|
<item row="18" column="1" colspan="3">
|
||||||
<widget class="QLabel" name="uid3ErrorReasonLabel">
|
<widget class="QLabel" name="uid3ErrorReasonLabel">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
@@ -163,8 +433,8 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="19" column="1" colspan="3">
|
<item row="14" column="1" colspan="3">
|
||||||
<widget class="QLabel" name="capabilitiesErrorReasonLabel">
|
<widget class="QLabel" name="qtVersionErrorReasonLabel">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
<horstretch>0</horstretch>
|
<horstretch>0</horstretch>
|
||||||
@@ -176,257 +446,48 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="11" column="0" colspan="4">
|
<item row="23" column="2">
|
||||||
<widget class="Line" name="line_3">
|
<widget class="QLabel" name="capabilitiesOkLabel">
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="0" colspan="4">
|
|
||||||
<widget class="Line" name="line_4">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0">
|
|
||||||
<widget class="QLabel" name="globalVendorNameErrorLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
<property name="pixmap">
|
<property name="pixmap">
|
||||||
<pixmap>:/projectexplorer/images/compile_error.png</pixmap>
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/ConnectionOn.png</pixmap>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="9" column="0">
|
<item row="3" column="0">
|
||||||
<widget class="QLabel" name="qtVersionErrorLabel">
|
<widget class="QLabel" name="displayNameWarningLabel">
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
<property name="pixmap">
|
<property name="pixmap">
|
||||||
<pixmap>:/projectexplorer/images/compile_error.png</pixmap>
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/compile_warning.png</pixmap>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="13" column="0">
|
<item row="1" column="1">
|
||||||
<widget class="QLabel" name="uid3ErrorLabel">
|
<widget class="QLineEdit" name="displayNameLineEdit"/>
|
||||||
<property name="sizePolicy">
|
</item>
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
<item row="1" column="2">
|
||||||
<horstretch>0</horstretch>
|
<widget class="QLabel" name="displayNameOkLabel">
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
<property name="pixmap">
|
<property name="pixmap">
|
||||||
<pixmap>:/projectexplorer/images/compile_error.png</pixmap>
|
<pixmap resource="../../projectexplorer/projectexplorer.qrc">:/projectexplorer/images/ConnectionOn.png</pixmap>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="19" column="0">
|
<item row="3" column="1">
|
||||||
<widget class="QLabel" name="capabilitiesErrorLabel">
|
<widget class="QLabel" name="displayNameWarningReasonLabel">
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/compile_error.png</pixmap>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="1">
|
|
||||||
<widget class="QLineEdit" name="globalVendorNameLineEdit">
|
|
||||||
<property name="text">
|
|
||||||
<string>Current Global Vendor Name</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="4" column="0">
|
|
||||||
<widget class="QLabel" name="localisedVendorNamesLabel">
|
|
||||||
<property name="text">
|
|
||||||
<string>Localised vendor names:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="4" column="1">
|
|
||||||
<widget class="QLineEdit" name="localisedVendorNamesLineEdit">
|
|
||||||
<property name="text">
|
|
||||||
<string>Localised Vendor Names</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="4" column="2">
|
|
||||||
<widget class="QLabel" name="localisedVendorNamesOkLabel">
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/ConnectionOn.png</pixmap>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="5" column="0">
|
|
||||||
<widget class="QLabel" name="localisedVendorNamesErrorLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/compile_error.png</pixmap>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="5" column="1" colspan="2">
|
|
||||||
<widget class="QLabel" name="localisedVendorNamesErrorReasonLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="7" column="0" colspan="3">
|
<item row="2" column="1">
|
||||||
<widget class="Line" name="line_2">
|
<widget class="QLabel" name="displayNameErrorReasonLabel">
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="6" column="0">
|
|
||||||
<widget class="QLabel" name="localisedVendorNamesWarningLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/compile_warning.png</pixmap>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="6" column="1" colspan="2">
|
|
||||||
<widget class="QLabel" name="localisedVendorNamesWarningReasonLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="10" column="0">
|
|
||||||
<widget class="QLabel" name="qtVersionWarningLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/compile_warning.png</pixmap>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="10" column="1" colspan="2">
|
|
||||||
<widget class="QLabel" name="qtVersionWarningReasonLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="0">
|
|
||||||
<widget class="QLabel" name="globalVendorNameWarningLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/compile_warning.png</pixmap>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="1" colspan="2">
|
|
||||||
<widget class="QLabel" name="globalVendorNameWarningReasonLabel">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="15" column="0" colspan="3">
|
|
||||||
<widget class="Line" name="line">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="14" column="0">
|
|
||||||
<widget class="QLabel" name="uid3WarningLabel">
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="pixmap">
|
|
||||||
<pixmap>:/projectexplorer/images/compile_warning.png</pixmap>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="14" column="1">
|
|
||||||
<widget class="QLabel" name="uid3WarningReasonLabel">
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
@@ -434,6 +495,8 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources>
|
||||||
|
<include location="../../projectexplorer/projectexplorer.qrc"/>
|
||||||
|
</resources>
|
||||||
<connections/>
|
<connections/>
|
||||||
</ui>
|
</ui>
|
||||||
|
Reference in New Issue
Block a user