Changeset 93995 in vbox
- Timestamp:
- Feb 28, 2022 9:31:59 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIRichTextLabel.cpp
r93115 r93995 38 38 { 39 39 /* Configure layout: */ 40 pMainLayout->set Margin(0);40 pMainLayout->setContentsMargins(0, 0, 0, 0); 41 41 42 42 /* Create text-browser: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.cpp
r93366 r93995 491 491 /* Create main-layout: */ 492 492 m_pMainLayout = new QGridLayout(centralWidget()); 493 m_pMainLayout->set Margin(0);493 m_pMainLayout->setContentsMargins(0, 0, 0, 0); 494 494 m_pMainLayout->setSpacing(0); 495 495 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilmContainer.cpp
r93990 r93995 241 241 { 242 242 /* Configure widget-layout: */ 243 pWidgetLayout->set Margin(0);243 pWidgetLayout->setContentsMargins(0, 0, 0, 0); 244 244 #ifdef VBOX_WS_MAC 245 pWidgetLayout->set Spacing(5);245 pWidgetLayout->setContentsMargins(5, 5, 5, 5); 246 246 #else 247 247 pWidgetLayout->setSpacing(qApp->style()->pixelMetric(QStyle::PM_LayoutHorizontalSpacing) / 2); … … 293 293 { 294 294 /* Configure layout: */ 295 m_pMainLayout->set Margin(0);295 m_pMainLayout->setContentsMargins(0, 0, 0, 0); 296 296 m_pMainLayout->setSpacing(0); 297 297 } -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UILineTextEdit.cpp
r93115 r93995 38 38 { 39 39 QVBoxLayout *pMainLayout = new QVBoxLayout(this); 40 pMainLayout->set Margin(12);40 pMainLayout->setContentsMargins(12, 12, 12, 12); 41 41 42 42 /* We need a text editor */ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIProgressDialog.cpp
r93115 r93995 282 282 { 283 283 /* Configure layout: */ 284 pDescriptionLayout->set Margin(0);284 pDescriptionLayout->setContentsMargins(0, 0, 0, 0); 285 285 286 286 /* Add stretch: */ … … 309 309 { 310 310 /* Configure layout: */ 311 pProgressLayout->set Margin(0);311 pProgressLayout->setContentsMargins(0, 0, 0, 0); 312 312 313 313 /* Create progress-bar: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportApp.cpp
r93115 r93995 49 49 /* Create widgets: */ 50 50 QVBoxLayout *pMainLayout = new QVBoxLayout(this); 51 pMainLayout->set Margin(12);51 pMainLayout->setContentsMargins(12, 12, 12, 12); 52 52 m_pCaption = new QLabel(this); 53 53 m_pCaption->setWordWrap(true);
Note:
See TracChangeset
for help on using the changeset viewer.