Changeset 63323 in vbox
- Timestamp:
- Aug 11, 2016 11:18:01 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109957
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r63318 r63323 4675 4675 return true; 4676 4676 4677 #if defined (VBOX_WS_WIN) || defined(VBOX_WS_X11)4677 #if defined(VBOX_WS_WIN) || defined(VBOX_WS_X11) 4678 4678 4679 4679 return vboxGlobal().activateWindow(id, true); 4680 4680 4681 #elif defined 4681 #elif defined(VBOX_WS_MAC) 4682 4682 /* 4683 4683 * This is just for the case were the other process cannot steal … … 4694 4694 return !rc; 4695 4695 4696 #else 4697 4698 return false; 4699 4696 4700 #endif 4697 4701 4698 return false;4699 4702 4700 4703 /// @todo Below is the old method of switching to the console window -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationDataItem.cpp
r63322 r63323 58 58 59 59 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ 60 60 61 61 62 UIInformationDataItem::UIInformationDataItem(InformationElementType type, const CMachine &machine, const CConsole &console, UIInformationModel *pModel) … … 1082 1083 } 1083 1084 1085 #ifdef _MSC_VER 1086 # pragma warning(push) 1087 # pragma warning(disable:4702) /* Something about the foreach (const CStorageController &controller, controllers) statement... */ 1088 #endif 1089 1084 1090 QVariant UIInformationDataStorageStatistics::data(const QModelIndex &index, int role) const 1085 1091 { … … 1194 1200 } 1195 1201 1202 #ifdef _MSC_VER 1203 # pragma warning(pop) 1204 #endif 1205 1196 1206 QString UIInformationDataStorageStatistics::parseStatistics(const QString &strText) 1197 1207 {
Note:
See TracChangeset
for help on using the changeset viewer.