Changeset 101241 in vbox for trunk/src/VBox
- Timestamp:
- Sep 22, 2023 3:40:32 PM (16 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/global
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r101230 r101241 216 216 /* Prepare everything: */ 217 217 prepareWidgets(); 218 prepareConnections();219 218 220 219 /* Apply language settings: */ … … 232 231 if (m_pEditorShortcutConfiguration) 233 232 { 233 connect(m_pEditorShortcutConfiguration, &UIShortcutConfigurationEditor::sigValueChanged, 234 this, &UIGlobalSettingsInput::revalidate); 234 235 addEditor(m_pEditorShortcutConfiguration); 235 236 pLayout->addWidget(m_pEditorShortcutConfiguration); … … 244 245 } 245 246 } 246 }247 248 void UIGlobalSettingsInput::prepareConnections()249 {250 connect(m_pEditorShortcutConfiguration, &UIShortcutConfigurationEditor::sigValueChanged,251 this, &UIGlobalSettingsInput::revalidate);252 247 } 253 248 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.h
r98103 r101241 84 84 /** Prepares widgets. */ 85 85 void prepareWidgets(); 86 /** Prepares connections. */87 void prepareConnections();88 86 /** Cleanups all. */ 89 87 void cleanup(); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.cpp
r101230 r101241 219 219 /* Prepare everything: */ 220 220 prepareWidgets(); 221 prepareConnections();222 221 223 222 /* Apply language settings: */ … … 235 234 if (m_pEditorProxyFeatures) 236 235 { 236 connect(m_pEditorProxyFeatures, &UIProxyFeaturesEditor::sigProxyModeChanged, 237 this, &UIGlobalSettingsProxy::revalidate); 238 connect(m_pEditorProxyFeatures, &UIProxyFeaturesEditor::sigProxyHostChanged, 239 this, &UIGlobalSettingsProxy::revalidate); 237 240 addEditor(m_pEditorProxyFeatures); 238 241 pLayout->addWidget(m_pEditorProxyFeatures); … … 242 245 pLayout->addStretch(); 243 246 } 244 }245 246 void UIGlobalSettingsProxy::prepareConnections()247 {248 connect(m_pEditorProxyFeatures, &UIProxyFeaturesEditor::sigProxyModeChanged,249 this, &UIGlobalSettingsProxy::revalidate);250 connect(m_pEditorProxyFeatures, &UIProxyFeaturesEditor::sigProxyHostChanged,251 this, &UIGlobalSettingsProxy::revalidate);252 247 } 253 248 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.h
r101053 r101241 84 84 /** Prepares wıdgets. */ 85 85 void prepareWidgets(); 86 /** Prepares connections. */87 void prepareConnections();88 86 /** Cleanups all. */ 89 87 void cleanup();
Note:
See TracChangeset
for help on using the changeset viewer.