Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
4267de47
Commit
4267de47
authored
May 27, 2009
by
dt
Browse files
Fix layout
parent
345ee7df
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/runsettingspropertiespage.ui
View file @
4267de47
...
...
@@ -85,19 +85,6 @@
<layout
class=
"QHBoxLayout"
name=
"horizontalLayout_2"
/>
</widget>
</item>
<item>
<spacer
name=
"verticalSpacer"
>
<property
name=
"orientation"
>
<enum>
Qt::Vertical
</enum>
</property>
<property
name=
"sizeHint"
stdset=
"0"
>
<size>
<width>
20
</width>
<height>
40
</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<resources/>
...
...
src/plugins/qt4projectmanager/qt4runconfiguration.cpp
View file @
4267de47
...
...
@@ -94,7 +94,7 @@ Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4Run
m_usingDyldImageSuffix
(
0
),
m_isShown
(
false
)
{
QFormLayout
*
toplayout
=
new
QFormLayout
(
this
);
QFormLayout
*
toplayout
=
new
QFormLayout
();
toplayout
->
setMargin
(
0
);
QLabel
*
nameLabel
=
new
QLabel
(
tr
(
"Name:"
));
...
...
@@ -136,10 +136,14 @@ Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4Run
this
,
SLOT
(
usingDyldImageSuffixToggled
(
bool
)));
#endif
QVBoxLayout
*
vbox
=
new
QVBoxLayout
(
this
);
vbox
->
addLayout
(
toplayout
);
m_environmentWidget
=
new
ProjectExplorer
::
EnvironmentWidget
(
this
);
m_environmentWidget
->
setBaseEnvironment
(
m_qt4RunConfiguration
->
baseEnvironment
());
m_environmentWidget
->
setUserChanges
(
m_qt4RunConfiguration
->
userEnvironmentChanges
());
toplayout
->
addRow
(
m_environmentWidget
);
m_environmentWidget
->
setSizePolicy
(
QSizePolicy
::
Expanding
,
QSizePolicy
::
Expanding
);
vbox
->
addWidget
(
m_environmentWidget
);
connect
(
m_workingDirectoryEdit
,
SIGNAL
(
changed
()),
this
,
SLOT
(
setWorkingDirectory
()));
...
...
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