Changeset 106012 in vbox
- Timestamp:
- Sep 11, 2024 4:26:15 PM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164760
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/UIAdvancedSettingsDialog.cpp
r105994 r106012 948 948 /* Polish stuff: */ 949 949 if (!m_fPolished) 950 {951 m_fPolished = true;952 950 polishEvent(); 953 }954 951 955 952 /* Call to base-class: */ … … 959 956 void UIAdvancedSettingsDialog::polishEvent() 960 957 { 958 /* Prevent handler from calling twice: */ 959 m_fPolished = true; 960 961 961 /* Install event-filters for all the required children. 962 962 * These children can be added together with pages. */ … … 975 975 } 976 976 977 /* Choose page/tab finally: */ 978 choosePageAndTab(); 979 980 /* Apply actual experience mode: */ 981 sltHandleExperienceModeChanged(); 982 977 983 /* Resize to minimum size: */ 978 984 resize(minimumSizeHint()); 979 980 /* Choose page/tab finally: */981 choosePageAndTab();982 983 /* Apply actual experience mode: */984 sltHandleExperienceModeChanged();985 986 985 /* Explicit centering according to our parent: */ 987 986 gpDesktop->centerWidget(this, parentWidget(), false);
Note:
See TracChangeset
for help on using the changeset viewer.