Changeset 76760 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jan 10, 2019 6:07:47 PM (6 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/KeyboardImpl.cpp
r76553 r76760 26 26 #include <VBox/com/array.h> 27 27 #include <VBox/vmm/pdmdrv.h> 28 29 #include <iprt/asm.h> 28 #include <VBox/err.h> 29 30 30 #include <iprt/cpp/utils.h> 31 31 32 32 33 // defines -
trunk/src/VBox/Main/src-client/MouseImpl.cpp
r76553 r76760 26 26 #include "MousePointerShapeWrap.h" 27 27 28 #include "AutoCaller.h"29 30 28 #include <VBox/vmm/pdmdrv.h> 31 29 #include <VBox/VMMDev.h> 32 33 #include <iprt/asm.h> 30 #include <VBox/err.h> 31 34 32 35 33 class ATL_NO_VTABLE MousePointerShape: -
trunk/src/VBox/Main/src-client/PCIRawDevImpl.cpp
r76553 r76760 25 25 // generated header for events 26 26 #include "VBoxEvents.h" 27 28 #include <VBox/err.h> 29 27 30 28 31 /** -
trunk/src/VBox/Main/src-client/UsbCardReader.cpp
r76553 r76760 29 29 #include <VBox/vmm/pdmdrv.h> 30 30 #include <VBox/vmm/pdmcardreaderinfs.h> 31 #include <VBox/err.h> 31 32 32 33 #include <iprt/req.h> -
trunk/src/VBox/Main/src-client/UsbWebcamInterface.cpp
r76553 r76760 26 26 27 27 #include <VBox/vmm/pdmwebcaminfs.h> 28 #include <VBox/err.h> 28 29 29 30 -
trunk/src/VBox/Main/src-client/WebMWriter.cpp
r76553 r76760 25 25 #include "LoggingNew.h" 26 26 27 #include <list>28 #include <map>29 #include <queue>30 #include <stack>31 32 #include <math.h> /* For lround.h. */33 34 #include <iprt/asm.h>35 #include <iprt/buildconfig.h>36 27 #include <iprt/cdefs.h> 37 28 #include <iprt/critsect.h> 38 29 #include <iprt/errcore.h> 39 30 #include <iprt/file.h> 40 #include <iprt/rand.h> 41 #include <iprt/string.h> 31 #include <iprt/buildconfig.h> 42 32 43 33 #include <VBox/log.h> … … 162 152 Assert(CurSeg.mapTracks.size() == 0); 163 153 164 Utf8Str strFileName = getFileName().c_str();154 com::Utf8Str strFileName = getFileName().c_str(); 165 155 166 156 close(); … … 308 298 * @returns File name as UTF-8 string. 309 299 */ 310 const Utf8Str& WebMWriter::GetFileName(void)300 const com::Utf8Str& WebMWriter::GetFileName(void) 311 301 { 312 302 return getFileName();
Note:
See TracChangeset
for help on using the changeset viewer.