Changeset 100924 in vbox for trunk/src/VBox
- Timestamp:
- Aug 21, 2023 3:04:36 PM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 158861
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialog.cpp
r100923 r100924 88 88 UISettingsDialog::~UISettingsDialog() 89 89 { 90 /* Delete serializer if exists: */ 91 if (serializeProcess()) 92 { 93 delete m_pSerializeProcess; 94 m_pSerializeProcess = 0; 95 } 96 97 /* Recall popup-pane if any: */ 98 popupCenter().recall(m_pStack, "SettingsDialogWarning"); 99 100 /* Delete selector early! */ 101 delete m_pSelector; 90 cleanup(); 102 91 } 103 92 … … 651 640 QFont fnt; 652 641 fnt.setFamily(QStringLiteral("Sans Serif")); 653 // fnt.setPointSize(11);654 642 fnt.setPointSize(fnt.pointSize() + 2); 655 643 fnt.setBold(true); … … 746 734 } 747 735 736 void UISettingsDialog::cleanup() 737 { 738 /* Delete serializer if exists: */ 739 if (serializeProcess()) 740 { 741 delete m_pSerializeProcess; 742 m_pSerializeProcess = 0; 743 } 744 745 /* Recall popup-pane if any: */ 746 popupCenter().recall(m_pStack, "SettingsDialogWarning"); 747 748 /* Delete selector early! */ 749 delete m_pSelector; 750 } 751 748 752 void UISettingsDialog::assignValidator(UISettingsPage *pPage) 749 753 { -
trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialog.h
r100923 r100924 198 198 /** Prepare button-box. */ 199 199 void prepareButtonBox(); 200 201 /** Cleanups all. */ 202 void cleanup(); 200 203 /** @} */ 201 204
Note:
See TracChangeset
for help on using the changeset viewer.