Changeset 11849 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Aug 29, 2008 9:32:44 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35689
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsNetwork.h
r10897 r11849 28 28 #include "COMDefs.h" 29 29 30 #if defined (Q_WS_WIN) || defined ( Q_OS_MAC)30 #if defined (Q_WS_WIN) || defined (VBOX_WITH_NETFLT) 31 31 class QTreeWidget; 32 32 class QTreeWidgetItem; … … 57 57 void setNetworksList (const QStringList &aList); 58 58 59 #if defined (Q_WS_WIN) || defined ( Q_OS_MAC)59 #if defined (Q_WS_WIN) || defined (VBOX_WITH_NETFLT) 60 60 void setInterfaceName (const QString &); 61 61 QString interfaceName() const; … … 86 86 QIWidgetValidator *mValidator; 87 87 88 #if defined (Q_WS_WIN) || defined ( Q_OS_MAC)88 #if defined (Q_WS_WIN) || defined (VBOX_WITH_NETFLT) 89 89 QString mInterfaceName; 90 90 #endif … … 92 92 93 93 94 #if defined (Q_WS_WIN) || defined ( Q_OS_MAC) || defined(__APPLE__) /// @todo fix stupid stupid moc.94 #if defined (Q_WS_WIN) || defined (VBOX_WITH_NETFLT) 95 95 /* 96 96 * QGroupBox sub-class which represents network interface list. … … 129 129 QTreeWidget *mList; 130 130 131 # if defined (Q_WS_WIN) 131 # if defined (Q_WS_WIN) && !defined(VBOX_WITH_NETFLT) 132 132 QAction *mAddAction; 133 133 QAction *mDelAction; 134 134 # endif 135 135 }; 136 #endif /* Q_WS_WIN || Q_OS_MAC*/136 #endif /* Q_WS_WIN || VBOX_WITH_NETFLT */ 137 137 138 138 … … 161 161 162 162 void updateNetworksList(); 163 #if defined (Q_WS_WIN) || defined ( Q_OS_MAC) || defined (__APPLE__) /// @todo fix stupid stupid moc.163 #if defined (Q_WS_WIN) || defined (VBOX_WITH_NETFLT) 164 164 void onCurrentPageChanged (int); 165 165 void onCurrentInterfaceChanged (const QString &); … … 172 172 /* Widgets */ 173 173 QTabWidget *mTwAdapters; 174 #if defined (Q_WS_WIN) || defined ( Q_OS_MAC)174 #if defined (Q_WS_WIN) || defined (VBOX_WITH_NETFLT) 175 175 VBoxNIList *mNIList; 176 176 #endif
Note:
See TracChangeset
for help on using the changeset viewer.