forked from qt-creator/qt-creator
Qmake: Remove hidden dysfunctional option to run on QVFb
Change-Id: I31c2895135f4ebd0a7cb0de898309676a8f98f37 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -133,16 +133,6 @@ DesktopQmakeRunConfigurationWidget::DesktopQmakeRunConfigurationWidget(DesktopQm
|
||||
m_qmakeRunConfiguration->extraAspect<WorkingDirectoryAspect>()->addToMainConfigurationWidget(this, toplayout);
|
||||
m_qmakeRunConfiguration->extraAspect<TerminalAspect>()->addToMainConfigurationWidget(this, toplayout);
|
||||
|
||||
m_useQvfbCheck = new QCheckBox(tr("Run on QVFb"), this);
|
||||
m_useQvfbCheck->setToolTip(tr("Check this option to run the application on a Qt Virtual Framebuffer."));
|
||||
m_useQvfbCheck->setChecked(m_qmakeRunConfiguration->runnable().as<StandardRunnable>().runMode
|
||||
== ApplicationLauncher::Console);
|
||||
m_useQvfbCheck->setVisible(false);
|
||||
auto innerBox = new QHBoxLayout();
|
||||
innerBox->addWidget(m_useQvfbCheck);
|
||||
innerBox->addStretch();
|
||||
toplayout->addRow(QString(), innerBox);
|
||||
|
||||
if (HostOsInfo::isMacHost()) {
|
||||
m_usingDyldImageSuffix = new QCheckBox(tr("Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug)"), this);
|
||||
m_usingDyldImageSuffix->setChecked(m_qmakeRunConfiguration->isUsingDyldImageSuffix());
|
||||
|
@@ -111,7 +111,6 @@ private:
|
||||
DesktopQmakeRunConfiguration *m_qmakeRunConfiguration = nullptr;
|
||||
bool m_ignoreChange = false;
|
||||
QLabel *m_executableLineLabel = nullptr;
|
||||
QCheckBox *m_useQvfbCheck = nullptr;
|
||||
QCheckBox *m_usingDyldImageSuffix = nullptr;
|
||||
QCheckBox *m_usingLibrarySearchPath = nullptr;
|
||||
QLineEdit *m_qmlDebugPort = nullptr;
|
||||
|
Reference in New Issue
Block a user