Index: /trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp	(revision 80677)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp	(revision 80678)
@@ -386,5 +386,5 @@
     bool isAllShortcutsUnique();
 
-private slots:
+public slots:
 
     /* Handler: Filtering stuff: */
@@ -842,5 +842,6 @@
 
     /* Connect model: */
-    connect(model(), SIGNAL(sigShortcutsLoaded()), this, SLOT(sltHandleShortcutsLoaded()));
+    connect(qobject_cast<UIHotKeyTableModel*>(model()), &UIHotKeyTableModel::sigShortcutsLoaded,
+            this, &UIHotKeyTable::sltHandleShortcutsLoaded);
 
     /* Check if we do have proper item delegate: */
@@ -1149,12 +1150,12 @@
 {
     /* Configure 'Selector UI' connections: */
-    connect(m_pSelectorFilterEditor, SIGNAL(textChanged(const QString &)),
-            m_pSelectorModel, SLOT(sltHandleFilterTextChange(const QString &)));
-    connect(m_pSelectorModel, SIGNAL(sigRevalidationRequired()), this, SLOT(revalidate()));
+    connect(m_pSelectorFilterEditor, &QLineEdit::textChanged,
+            m_pSelectorModel, &UIHotKeyTableModel::sltHandleFilterTextChange);
+    connect(m_pSelectorModel, &UIHotKeyTableModel::sigRevalidationRequired, this, &UIGlobalSettingsInput::revalidate);
 
     /* Configure 'Runtime UI' connections: */
-    connect(m_pMachineFilterEditor, SIGNAL(textChanged(const QString &)),
-            m_pMachineModel, SLOT(sltHandleFilterTextChange(const QString &)));
-    connect(m_pMachineModel, SIGNAL(sigRevalidationRequired()), this, SLOT(revalidate()));
+    connect(m_pMachineFilterEditor, &QLineEdit::textChanged,
+            m_pMachineModel, &UIHotKeyTableModel::sltHandleFilterTextChange);
+    connect(m_pMachineModel, &UIHotKeyTableModel::sigRevalidationRequired, this, &UIGlobalSettingsInput::revalidate);
 }
 
@@ -1206,3 +1207,2 @@
 
 # include "UIGlobalSettingsInput.moc"
-
Index: /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.cpp	(revision 80677)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.cpp	(revision 80678)
@@ -236,13 +236,13 @@
 
     /* Setup connections: */
-    connect(m_pEnableAdapterCheckBox, SIGNAL(toggled(bool)), this, SLOT(sltHandleAdapterActivityChange()));
+    connect(m_pEnableAdapterCheckBox, &QCheckBox::toggled, this, &UIMachineSettingsNetwork::sltHandleAdapterActivityChange);
     connect(m_pAttachmentTypeEditor, &UINetworkAttachmentEditor::sigValueTypeChanged,
             this, &UIMachineSettingsNetwork::sltHandleAttachmentTypeChange);
     connect(m_pAttachmentTypeEditor, &UINetworkAttachmentEditor::sigValueNameChanged,
             this, &UIMachineSettingsNetwork::sltHandleAlternativeNameChange);
-    connect(m_pAdvancedArrow, SIGNAL(sigClicked()), this, SLOT(sltHandleAdvancedButtonStateChange()));
-    connect(m_pMACButton, SIGNAL(clicked()), this, SLOT(sltGenerateMac()));
-    connect(m_pPortForwardingButton, SIGNAL(clicked()), this, SLOT(sltOpenPortForwardingDlg()));
-    connect(this, SIGNAL(sigTabUpdated()), m_pParent, SLOT(sltHandleTabUpdate()));
+    connect(m_pAdvancedArrow, &QIArrowButtonSwitch::sigClicked, this, &UIMachineSettingsNetwork::sltHandleAdvancedButtonStateChange);
+    connect(m_pMACButton, &QIToolButton::clicked, this, &UIMachineSettingsNetwork::sltGenerateMac);
+    connect(m_pPortForwardingButton, &QPushButton::clicked, this, &UIMachineSettingsNetwork::sltOpenPortForwardingDlg);
+    connect(this, &UIMachineSettingsNetwork::sigTabUpdated, m_pParent, &UIMachineSettingsNetworkPage::sltHandleTabUpdate);
 
     /* Prepare validation: */
@@ -631,5 +631,5 @@
 {
     /* Configure validation: */
-    connect(m_pMACEditor, SIGNAL(textChanged(const QString &)), m_pParent, SLOT(revalidate()));
+    connect(m_pMACEditor, &QILineEdit::textChanged, m_pParent, &UIMachineSettingsNetworkPage::revalidate);
 }
 
@@ -1019,6 +1019,6 @@
                 {
                     /* Configure tab: */
-                    connect(pTab, SIGNAL(sigNotifyAdvancedButtonStateChange(bool)),
-                            this, SLOT(sltHandleAdvancedButtonStateChange(bool)));
+                    connect(pTab, &UIMachineSettingsNetwork::sigNotifyAdvancedButtonStateChange,
+                            this, &UIMachineSettingsNetworkPage::sltHandleAdvancedButtonStateChange);
 
                     /* Add tab into tab-widget: */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.h	(revision 80677)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.h	(revision 80678)
@@ -58,4 +58,9 @@
     const QStringList &natNetworkList() const { return m_natNetworkList; }
 
+ public slots:
+
+    /** Handles particular tab update. */
+    void sltHandleTabUpdate();
+
 protected:
 
@@ -87,7 +92,4 @@
 
 private slots:
-
-    /** Handles particular tab update. */
-    void sltHandleTabUpdate();
 
     /** Handles whether the advanced button is @a fExpanded. */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSFDetails.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSFDetails.cpp	(revision 80677)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSFDetails.cpp	(revision 80678)
@@ -43,9 +43,10 @@
 
     /* Setup connections: */
-    connect(mPsPath, SIGNAL(currentIndexChanged(int)), this, SLOT(sltSelectPath()));
-    connect(mPsPath, SIGNAL(pathChanged(const QString &)), this, SLOT(sltSelectPath()));
-    connect(mLeName, SIGNAL(textChanged(const QString &)), this, SLOT(sltValidate()));
+    connect(mPsPath, static_cast<void(UIFilePathSelector::*)(int)>(&UIFilePathSelector::currentIndexChanged),
+            this, &UIMachineSettingsSFDetails::sltSelectPath);
+    connect(mPsPath, &UIFilePathSelector::pathChanged, this, &UIMachineSettingsSFDetails::sltSelectPath);
+    connect(mLeName, &QLineEdit::textChanged, this, &UIMachineSettingsSFDetails::sltValidate);
     if (fEnableSelector)
-        connect(mCbPermanent, SIGNAL(toggled(bool)), this, SLOT(sltValidate()));
+        connect(mCbPermanent, &QCheckBox::toggled, this, &UIMachineSettingsSFDetails::sltValidate);
 
      /* Applying language settings: */
@@ -184,3 +185,2 @@
     sltValidate();
 }
-
