Changeset 33882 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetworkDetails.cpp
- Timestamp:
- Nov 9, 2010 9:32:27 AM (14 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetworkDetails.cpp
r33879 r33882 3 3 * 4 4 * VBox frontends: Qt4 GUI ("VirtualBox"): 5 * VBoxGLSettingsNetworkDetails class implementation5 * UIGlobalSettingsNetworkDetails class implementation 6 6 */ 7 7 … … 19 19 20 20 /* VBox Includes */ 21 #include " VBoxGLSettingsNetwork.h"22 #include " VBoxGLSettingsNetworkDetails.h"21 #include "UIGlobalSettingsNetwork.h" 22 #include "UIGlobalSettingsNetworkDetails.h" 23 23 24 24 /* Qt Includes */ … … 26 26 #include <QRegExpValidator> 27 27 28 VBoxGLSettingsNetworkDetails::VBoxGLSettingsNetworkDetails (QWidget *aParent)28 UIGlobalSettingsNetworkDetails::UIGlobalSettingsNetworkDetails (QWidget *aParent) 29 29 : QIWithRetranslateUI2 <QIDialog> (aParent 30 30 #ifdef Q_WS_MAC … … 35 35 { 36 36 /* Apply UI decorations */ 37 Ui:: VBoxGLSettingsNetworkDetails::setupUi (this);37 Ui::UIGlobalSettingsNetworkDetails::setupUi (this); 38 38 39 39 /* Setup dialog */ … … 99 99 } 100 100 101 void VBoxGLSettingsNetworkDetails::getFromItem (NetworkItem *aItem)101 void UIGlobalSettingsNetworkDetails::getFromItem (NetworkItem *aItem) 102 102 { 103 103 mItem = aItem; … … 117 117 } 118 118 119 void VBoxGLSettingsNetworkDetails::putBackToItem()119 void UIGlobalSettingsNetworkDetails::putBackToItem() 120 120 { 121 121 /* Host-only Interface */ … … 143 143 } 144 144 145 void VBoxGLSettingsNetworkDetails::retranslateUi()145 void UIGlobalSettingsNetworkDetails::retranslateUi() 146 146 { 147 147 /* Translate uic generated strings */ 148 Ui:: VBoxGLSettingsNetworkDetails::retranslateUi (this);149 } 150 151 void VBoxGLSettingsNetworkDetails::dhcpClientStatusChanged()148 Ui::UIGlobalSettingsNetworkDetails::retranslateUi (this); 149 } 150 151 void UIGlobalSettingsNetworkDetails::dhcpClientStatusChanged() 152 152 { 153 153 bool isManual = mCbManual->isChecked(); … … 180 180 } 181 181 182 void VBoxGLSettingsNetworkDetails::dhcpServerStatusChanged()182 void UIGlobalSettingsNetworkDetails::dhcpServerStatusChanged() 183 183 { 184 184 bool isEnabled = mCbDhcpServerEnabled->isChecked();
Note:
See TracChangeset
for help on using the changeset viewer.