aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/winrt
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-11-26 17:11:01 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2019-11-28 12:30:52 +0000
commit221d356210848765f21db596a8a873ba274fdb19 (patch)
tree0ba6323ec640ef25968b1a3a86d8065aa86b01b6 /src/plugins/winrt
parentb31f6aa50201e45f7f2eae804f95d97bf772ab23 (diff)
Qmake: Make proper use of BuildDirectoryAspect
Change-Id: I439496c85f7e0f402ab038de6a8171dd2f7d2ffd Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/winrt')
-rw-r--r--src/plugins/winrt/winrtrunconfiguration.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/plugins/winrt/winrtrunconfiguration.cpp b/src/plugins/winrt/winrtrunconfiguration.cpp
index 663ffdea91..163fc2f5d9 100644
--- a/src/plugins/winrt/winrtrunconfiguration.cpp
+++ b/src/plugins/winrt/winrtrunconfiguration.cpp
@@ -40,7 +40,8 @@ namespace Internal {
UninstallAfterStopAspect::UninstallAfterStopAspect()
: BaseBoolAspect("WinRtRunConfigurationUninstallAfterStopId")
{
- setLabel(WinRtRunConfiguration::tr("Uninstall package after application stops"));
+ setLabel(WinRtRunConfiguration::tr("Uninstall package after application stops"),
+ LabelPlacement::AtCheckBox);
}
// LoopbackExemptClientAspect
@@ -48,8 +49,8 @@ UninstallAfterStopAspect::UninstallAfterStopAspect()
LoopbackExemptClientAspect::LoopbackExemptClientAspect()
: BaseBoolAspect("WinRtRunConfigurationLoopbackExemptClient")
{
- setLabel(WinRtRunConfiguration::tr("Enable localhost communication for "
- "clients"));
+ setLabel(WinRtRunConfiguration::tr("Enable localhost communication for clients"),
+ LabelPlacement::AtCheckBox);
}
// LoopbackExemptServerAspect
@@ -58,7 +59,8 @@ LoopbackExemptServerAspect::LoopbackExemptServerAspect()
: BaseBoolAspect("WinRtRunConfigurationLoopbackExemptServer")
{
setLabel(WinRtRunConfiguration::tr("Enable localhost communication for "
- "servers (requires elevated rights)"));
+ "servers (requires elevated rights)"),
+ LabelPlacement::AtCheckBox);
}
// WinRtRunConfiguration