Changeset 76592 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Jan 1, 2019 8:13:07 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127895
- Location:
- trunk/src/VBox/Main/src-all
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/AuthLibrary.cpp
r76553 r76592 16 16 */ 17 17 18 #define LOG_GROUP LOG_GROUP_MAIN 18 19 #include "AuthLibrary.h" 19 #include "Logging .h"20 #include "LoggingNew.h" 20 21 21 22 #include <iprt/err.h> -
trunk/src/VBox/Main/src-all/AutoCaller.cpp
r76553 r76592 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VirtualBox object state implementation 6 4 */ … … 18 16 */ 19 17 18 #define LOG_GROUP LOG_GROUP_MAIN 20 19 #include <iprt/semaphore.h> 21 20 22 21 #include "VirtualBoxBase.h" 23 22 #include "AutoCaller.h" 24 #include "Logging .h"23 #include "LoggingNew.h" 25 24 26 25 -
trunk/src/VBox/Main/src-all/DisplayPNGUtil.cpp
r76553 r76592 16 16 */ 17 17 18 # include "Logging.h"18 #define LOG_GROUP LOG_GROUP_MAIN_DISPLAY 19 19 #include "DisplayImpl.h" 20 20 -
trunk/src/VBox/Main/src-all/EventImpl.cpp
r76553 r76592 50 50 */ 51 51 52 #define LOG_GROUP LOG_GROUP_MAIN_EVENT 52 53 #include <list> 53 54 #include <map> … … 56 57 #include "EventImpl.h" 57 58 #include "AutoCaller.h" 58 #include "Logging .h"59 #include "LoggingNew.h" 59 60 60 61 #include <iprt/asm.h> -
trunk/src/VBox/Main/src-all/PCIDeviceAttachmentImpl.cpp
r76553 r76592 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * PCI attachment information implmentation. 6 4 */ … … 18 16 */ 19 17 18 #define LOG_GROUP LOG_GROUP_MAIN_PCIDEVICEATTACHMENT 20 19 #include "PCIDeviceAttachmentImpl.h" 21 20 #include "AutoCaller.h" 22 21 #include "Global.h" 23 #include "Logging .h"22 #include "LoggingNew.h" 24 23 25 24 #include <VBox/settings.h> -
trunk/src/VBox/Main/src-all/ProgressImpl.cpp
r76553 r76592 1 1 /* $Id$ */ 2 2 /** @file 3 *4 3 * VirtualBox Progress COM class implementation 5 4 */ … … 17 16 */ 18 17 18 #define LOG_GROUP LOG_GROUP_MAIN_PROGRESS 19 19 #include <iprt/types.h> 20 21 20 22 21 #if defined(VBOX_WITH_XPCOM) … … 33 32 #include "VirtualBoxErrorInfoImpl.h" 34 33 35 #include "Logging.h"36 37 34 #include <iprt/time.h> 38 35 #include <iprt/semaphore.h> … … 40 37 41 38 #include <iprt/errcore.h> 39 42 40 #include "AutoCaller.h" 43 41 #include "LoggingNew.h" 44 42 #include "VBoxEvents.h" 43 45 44 46 45 Progress::Progress() -
trunk/src/VBox/Main/src-all/SharedFolderImpl.cpp
r76553 r76592 1 1 /* $Id$ */ 2 2 /** @file 3 *4 3 * VirtualBox COM class implementation 5 4 */ … … 17 16 */ 18 17 18 #define LOG_GROUP LOG_GROUP_MAIN_SHAREDFOLDER 19 19 #include "SharedFolderImpl.h" 20 20 #if !defined(VBOX_COM_INPROC) … … 25 25 26 26 #include "AutoCaller.h" 27 #include "Logging.h"28 27 29 28 #include <iprt/param.h> -
trunk/src/VBox/Main/src-all/VirtualBoxBase.cpp
r76553 r76592 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VirtualBox COM base classes implementation 6 4 */ … … 18 16 */ 19 17 18 #define LOG_GROUP LOG_GROUP_MAIN 20 19 #include <iprt/semaphore.h> 21 20 #include <iprt/asm.h> … … 36 35 #include "AutoCaller.h" 37 36 #include "VirtualBoxErrorInfoImpl.h" 38 #include "Logging.h"39 37 #include "Global.h" 38 #include "LoggingNew.h" 40 39 41 40 #include "VBox/com/ErrorInfo.h" -
trunk/src/VBox/Main/src-all/VirtualBoxErrorInfoImpl.cpp
r76553 r76592 1 1 /* $Id$ */ 2 2 /** @file 3 *4 3 * VirtualBoxErrorInfo COM class implementation 5 4 */ … … 17 16 */ 18 17 18 #define LOG_GROUP LOG_GROUP_MAIN 19 19 #include "VirtualBoxErrorInfoImpl.h" 20 #include "Logging.h"21 20 22 21 #include <VBox/com/ErrorInfo.h>
Note:
See TracChangeset
for help on using the changeset viewer.