Index: /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkDetailsDialog.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkDetailsDialog.cpp	(revision 66722)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkDetailsDialog.cpp	(revision 66723)
@@ -238,5 +238,6 @@
             {
                 /* Configure check-box: */
-                connect(m_pCheckBoxDHCP, SIGNAL(stateChanged(int)), this, SLOT(sltDhcpServerStatusChanged()));
+                connect(m_pCheckBoxDHCP, &QCheckBox::stateChanged,
+                        this, &UIHostNetworkDetailsDialog::sltDhcpServerStatusChanged);
                 /* Add into layout: */
                 pLayoutDHCPServer->addWidget(m_pCheckBoxDHCP, 0, 0, 1, 3);
@@ -347,6 +348,8 @@
         /* Configure button-box: */
         pButtonBox->setStandardButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
-        connect(pButtonBox, SIGNAL(accepted()), this, SLOT(accept()));
-        connect(pButtonBox, SIGNAL(rejected()), this, SLOT(reject()));
+        connect(pButtonBox, &QIDialogButtonBox::accepted,
+                this, &UIHostNetworkDetailsDialog::accept);
+        connect(pButtonBox, &QIDialogButtonBox::rejected,
+                this, &UIHostNetworkDetailsDialog::reject);
         /* Add button-box into layout: */
         layout()->addWidget(pButtonBox);
Index: /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkDetailsDialog.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkDetailsDialog.h	(revision 66722)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkDetailsDialog.h	(revision 66723)
@@ -214,5 +214,5 @@
         UIDataHostNetwork &m_data;
         /** Holds the tab-widget. */
-        QITabWidget *m_pTabWidget;
+        QITabWidget       *m_pTabWidget;
     /** @} */
 
@@ -220,19 +220,19 @@
      * @{ */
         /** Holds the IPv4 address label. */
-        QLabel      *m_pLabelIPv4;
+        QLabel     *m_pLabelIPv4;
         /** Holds the IPv4 address editor. */
-        QILineEdit  *m_pEditorIPv4;
+        QILineEdit *m_pEditorIPv4;
         /** Holds the IPv4 network mask label. */
-        QLabel      *m_pLabelNMv4;
+        QLabel     *m_pLabelNMv4;
         /** Holds the IPv4 network mask editor. */
-        QILineEdit  *m_pEditorNMv4;
+        QILineEdit *m_pEditorNMv4;
         /** Holds the IPv6 address label. */
-        QLabel      *m_pLabelIPv6;
+        QLabel     *m_pLabelIPv6;
         /** Holds the IPv6 address editor. */
-        QILineEdit  *m_pEditorIPv6;
+        QILineEdit *m_pEditorIPv6;
         /** Holds the IPv6 network mask label. */
-        QLabel      *m_pLabelNMv6;
+        QLabel     *m_pLabelNMv6;
         /** Holds the IPv6 network mask editor. */
-        QILineEdit  *m_pEditorNMv6;
+        QILineEdit *m_pEditorNMv6;
     /** @} */
 
@@ -240,21 +240,21 @@
      * @{ */
         /** Holds the DHCP server status chack-box. */
-        QCheckBox   *m_pCheckBoxDHCP;
+        QCheckBox  *m_pCheckBoxDHCP;
         /** Holds the DHCP address label. */
-        QLabel      *m_pLabelDHCPAddress;
+        QLabel     *m_pLabelDHCPAddress;
         /** Holds the DHCP address editor. */
-        QILineEdit  *m_pEditorDHCPAddress;
+        QILineEdit *m_pEditorDHCPAddress;
         /** Holds the DHCP network mask label. */
-        QLabel      *m_pLabelDHCPMask;
+        QLabel     *m_pLabelDHCPMask;
         /** Holds the DHCP network mask editor. */
-        QILineEdit  *m_pEditorDHCPMask;
+        QILineEdit *m_pEditorDHCPMask;
         /** Holds the DHCP lower address label. */
-        QLabel      *m_pLabelDHCPLowerAddress;
+        QLabel     *m_pLabelDHCPLowerAddress;
         /** Holds the DHCP lower address editor. */
-        QILineEdit  *m_pEditorDHCPLowerAddress;
+        QILineEdit *m_pEditorDHCPLowerAddress;
         /** Holds the DHCP upper address label. */
-        QLabel      *m_pLabelDHCPUpperAddress;
+        QLabel     *m_pLabelDHCPUpperAddress;
         /** Holds the DHCP upper address editor. */
-        QILineEdit  *m_pEditorDHCPUpperAddress;
+        QILineEdit *m_pEditorDHCPUpperAddress;
     /** @} */
 };
Index: /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkManager.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkManager.cpp	(revision 66722)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkManager.cpp	(revision 66723)
@@ -700,5 +700,5 @@
                                                       ":/add_host_iface_disabled_22px.png",
                                                       ":/add_host_iface_disabled_16px.png"));
-        connect(m_pActionAdd, SIGNAL(triggered()), this, SLOT(sltAddHostNetwork()));
+        connect(m_pActionAdd, &QAction::triggered, this, &UIHostNetworkManager::sltAddHostNetwork);
     }
 
@@ -713,5 +713,5 @@
                                                          ":/remove_host_iface_disabled_22px.png",
                                                          ":/remove_host_iface_disabled_16px.png"));
-        connect(m_pActionRemove, SIGNAL(triggered()), this, SLOT(sltRemoveHostNetwork()));
+        connect(m_pActionRemove, &QAction::triggered, this, &UIHostNetworkManager::sltRemoveHostNetwork);
     }
 
@@ -726,5 +726,5 @@
                                                        ":/edit_host_iface_disabled_22px.png",
                                                        ":/edit_host_iface_disabled_16px.png"));
-        connect(m_pActionEdit, SIGNAL(triggered()), this, SLOT(sltEditHostNetwork()));
+        connect(m_pActionEdit, &QAction::triggered, this, &UIHostNetworkManager::sltEditHostNetwork);
     }
 
@@ -824,12 +824,12 @@
         m_pTreeWidget->setSortingEnabled(true);
         m_pTreeWidget->sortByColumn(Column_Name, Qt::AscendingOrder);
-        connect(m_pTreeWidget, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
-                this, SLOT(sltHandleCurrentItemChange()));
-        connect(m_pTreeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem*, int)),
-                this, SLOT(sltEditHostNetwork()));
-        connect(m_pTreeWidget, SIGNAL(customContextMenuRequested(const QPoint &)),
-                this, SLOT(sltHandleContextMenuRequest(const QPoint &)));
-        connect(m_pTreeWidget, SIGNAL(itemChanged(QTreeWidgetItem *, int)),
-                this, SLOT(sltHandleItemChange(QTreeWidgetItem *)));
+        connect(m_pTreeWidget, &QITreeWidget::currentItemChanged,
+                this, &UIHostNetworkManager::sltHandleCurrentItemChange);
+        connect(m_pTreeWidget, &QITreeWidget::itemDoubleClicked,
+                this, &UIHostNetworkManager::sltEditHostNetwork);
+        connect(m_pTreeWidget, &QITreeWidget::customContextMenuRequested,
+                this, &UIHostNetworkManager::sltHandleContextMenuRequest);
+        connect(m_pTreeWidget, &QITreeWidget::itemChanged,
+                this, &UIHostNetworkManager::sltHandleItemChange);
         /* Add tree-widget into layout: */
         QVBoxLayout *pMainLayout = qobject_cast<QVBoxLayout*>(centralWidget()->layout());
@@ -847,6 +847,6 @@
         m_pButtonBox->setStandardButtons(QDialogButtonBox::Help | QDialogButtonBox::Close);
         m_pButtonBox->button(QDialogButtonBox::Close)->setShortcut(Qt::Key_Escape);
-        connect(m_pButtonBox, SIGNAL(helpRequested()), &msgCenter(), SLOT(sltShowHelpHelpDialog()));
-        connect(m_pButtonBox, SIGNAL(rejected()), this, SLOT(close()));
+        connect(m_pButtonBox, &QIDialogButtonBox::helpRequested, &msgCenter(), &UIMessageCenter::sltShowHelpHelpDialog);
+        connect(m_pButtonBox, &QIDialogButtonBox::rejected, this, &UIHostNetworkManager::close);
         /* Add button-box into layout: */
         QVBoxLayout *pMainLayout = qobject_cast<QVBoxLayout*>(centralWidget()->layout());
